2023-07-31 11:20:14 +00:00
|
|
|
import logging
|
2023-08-08 15:09:28 +00:00
|
|
|
import numpy as np
|
2023-08-09 14:32:13 +00:00
|
|
|
import json
|
2023-07-31 11:20:14 +00:00
|
|
|
from serial.tools.list_ports import comports
|
2023-08-07 12:34:41 +00:00
|
|
|
from PyQt6 import QtSerialPort
|
2023-08-16 08:37:09 +00:00
|
|
|
from PyQt6.QtCore import QThread, pyqtSignal, pyqtSlot
|
2023-07-31 06:50:34 +00:00
|
|
|
from nqrduck.module.module_controller import ModuleController
|
2023-08-16 14:23:23 +00:00
|
|
|
from .model import S11Data, LookupTable
|
2023-07-31 06:50:34 +00:00
|
|
|
|
2023-07-31 11:20:14 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2023-08-16 14:23:23 +00:00
|
|
|
|
2023-07-31 06:50:34 +00:00
|
|
|
class AutoTMController(ModuleController):
|
2023-07-31 13:24:46 +00:00
|
|
|
BAUDRATE = 115200
|
2023-07-31 11:20:14 +00:00
|
|
|
|
2023-07-31 13:24:46 +00:00
|
|
|
def find_devices(self) -> None:
|
2023-08-16 14:23:23 +00:00
|
|
|
"""Scan for available serial devices and add them to the model as available devices."""
|
2023-07-31 11:20:14 +00:00
|
|
|
logger.debug("Scanning for available serial devices")
|
|
|
|
ports = comports()
|
|
|
|
self.module.model.available_devices = [port.device for port in ports]
|
|
|
|
logger.debug("Found %s devices", len(self.module.model.available_devices))
|
|
|
|
for device in self.module.model.available_devices:
|
|
|
|
logger.debug("Found device: %s", device)
|
2023-07-31 13:24:46 +00:00
|
|
|
|
2023-08-16 14:23:23 +00:00
|
|
|
def connect(self, device: str) -> None:
|
|
|
|
"""Connect to the specified device.
|
|
|
|
|
2023-08-10 08:09:20 +00:00
|
|
|
Args:
|
|
|
|
device (str): The device port to connect to."""
|
2023-07-31 13:24:46 +00:00
|
|
|
logger.debug("Connecting to device %s", device)
|
|
|
|
try:
|
2023-08-16 14:23:23 +00:00
|
|
|
self.module.model.serial = QtSerialPort.QSerialPort(
|
|
|
|
device, baudRate=self.BAUDRATE, readyRead=self.on_ready_read
|
|
|
|
)
|
2023-08-18 09:02:08 +00:00
|
|
|
self.module.model.serial.open(QtSerialPort.QSerialPort.OpenModeFlag.ReadWrite)
|
2023-08-07 12:34:41 +00:00
|
|
|
|
2023-07-31 13:24:46 +00:00
|
|
|
logger.debug("Connected to device %s", device)
|
2023-08-07 12:34:41 +00:00
|
|
|
except Exception as e:
|
|
|
|
logger.error("Could not connect to device %s: %s", device, e)
|
2023-07-31 13:43:54 +00:00
|
|
|
|
2023-08-16 14:23:23 +00:00
|
|
|
def start_frequency_sweep(self, start_frequency: str, stop_frequency: str) -> None:
|
|
|
|
"""This starts a frequency sweep on the device in the specified range.
|
2023-08-11 12:25:19 +00:00
|
|
|
The minimum start and stop frequency are specific to the AD4351 based frequency generator.
|
2023-08-16 14:23:23 +00:00
|
|
|
|
2023-08-10 08:09:20 +00:00
|
|
|
Args:
|
|
|
|
start_frequency (str): The start frequency in MHz.
|
|
|
|
stop_frequency (str): The stop frequency in MHz.
|
2023-08-11 12:25:19 +00:00
|
|
|
|
2023-08-10 08:09:20 +00:00
|
|
|
"""
|
2023-08-16 14:23:23 +00:00
|
|
|
FREQUENCY_STEP = 50000 # Hz
|
|
|
|
MIN_FREQUENCY = 35e6 # Hz
|
|
|
|
MAX_FREQUENCY = 300e6 # Hz
|
2023-08-10 08:09:20 +00:00
|
|
|
|
|
|
|
try:
|
2023-08-16 08:37:09 +00:00
|
|
|
start_frequence = start_frequency.replace(",", ".")
|
|
|
|
stop_frequency = stop_frequency.replace(",", ".")
|
2023-08-10 08:09:20 +00:00
|
|
|
start_frequency = float(start_frequency) * 1e6
|
|
|
|
stop_frequency = float(stop_frequency) * 1e6
|
|
|
|
except ValueError:
|
|
|
|
error = "Could not start frequency sweep. Start and stop frequency must be floats"
|
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
|
|
|
|
|
|
|
if start_frequency > stop_frequency:
|
|
|
|
error = "Could not start frequency sweep. Start frequency must be smaller than stop frequency"
|
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
2023-08-16 14:23:23 +00:00
|
|
|
|
2023-08-10 08:09:20 +00:00
|
|
|
if start_frequency < 0 or stop_frequency < 0:
|
|
|
|
error = "Could not start frequency sweep. Start and stop frequency must be positive"
|
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
2023-08-16 14:23:23 +00:00
|
|
|
|
2023-08-10 08:09:20 +00:00
|
|
|
if start_frequency < MIN_FREQUENCY or stop_frequency > MAX_FREQUENCY:
|
2023-08-18 09:02:08 +00:00
|
|
|
error = "Could not start frequency sweep. Start and stop frequency must be between %s and %s MHz" % (
|
|
|
|
MIN_FREQUENCY / 1e6,
|
|
|
|
MAX_FREQUENCY / 1e6,
|
2023-08-16 14:23:23 +00:00
|
|
|
)
|
2023-08-10 08:09:20 +00:00
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
|
|
|
|
2023-08-16 14:23:23 +00:00
|
|
|
logger.debug(
|
|
|
|
"Starting frequency sweep from %s to %s with step size %s",
|
|
|
|
start_frequency,
|
|
|
|
stop_frequency,
|
|
|
|
FREQUENCY_STEP,
|
|
|
|
)
|
2023-08-08 15:09:28 +00:00
|
|
|
# We create the frequency sweep spinner dialog
|
|
|
|
self.module.model.clear_data_points()
|
|
|
|
self.module.view.create_frequency_sweep_spinner_dialog()
|
2023-08-16 14:23:23 +00:00
|
|
|
# Print the command 'f<start>f<stop>f<step>' to the serial connection
|
2023-08-08 15:09:28 +00:00
|
|
|
try:
|
2023-08-10 08:09:20 +00:00
|
|
|
command = "f%sf%sf%s" % (start_frequency, stop_frequency, FREQUENCY_STEP)
|
2023-08-16 14:23:23 +00:00
|
|
|
self.module.model.serial.write(command.encode("utf-8"))
|
2023-08-08 15:09:28 +00:00
|
|
|
except AttributeError:
|
|
|
|
logger.error("Could not start frequency sweep. No device connected.")
|
2023-08-10 08:09:20 +00:00
|
|
|
self.module.view.frequency_sweep_spinner.hide()
|
2023-08-08 15:09:28 +00:00
|
|
|
|
2023-08-07 12:34:41 +00:00
|
|
|
def on_ready_read(self) -> None:
|
2023-08-16 14:23:23 +00:00
|
|
|
"""This method is called when data is received from the serial connection."""
|
2023-08-07 12:34:41 +00:00
|
|
|
serial = self.module.model.serial
|
|
|
|
while serial.canReadLine():
|
|
|
|
text = serial.readLine().data().decode()
|
2023-08-16 14:23:23 +00:00
|
|
|
text = text.rstrip("\r\n")
|
2023-08-08 15:09:28 +00:00
|
|
|
# logger.debug("Received data: %s", text)
|
|
|
|
# If the text starts with 'f' and the frequency sweep spinner is visible we know that the data is a data point
|
2023-08-09 09:57:34 +00:00
|
|
|
# then we have the data for the return loss and the phase at a certain frequency
|
2023-08-18 09:02:08 +00:00
|
|
|
if text.startswith("f") and self.module.view.frequency_sweep_spinner.isVisible():
|
2023-08-07 12:34:41 +00:00
|
|
|
text = text[1:].split("r")
|
|
|
|
frequency = float(text[0])
|
2023-08-08 15:09:28 +00:00
|
|
|
return_loss, phase = map(float, text[1].split("p"))
|
|
|
|
self.module.model.add_data_point(frequency, return_loss, phase)
|
2023-08-09 09:57:34 +00:00
|
|
|
# If the text starts with 'r' and no calibration is active we know that the data is a measurement
|
2023-08-08 15:09:28 +00:00
|
|
|
elif text.startswith("r") and self.module.model.active_calibration == None:
|
|
|
|
logger.debug("Measurement finished")
|
2023-08-18 09:02:08 +00:00
|
|
|
self.module.model.measurement = S11Data(self.module.model.data_points.copy())
|
2023-08-08 15:09:28 +00:00
|
|
|
self.module.view.frequency_sweep_spinner.hide()
|
2023-08-09 09:57:34 +00:00
|
|
|
# If the text starts with 'r' and a short calibration is active we know that the data is a short calibration
|
2023-08-18 09:02:08 +00:00
|
|
|
elif text.startswith("r") and self.module.model.active_calibration == "short":
|
2023-08-08 15:09:28 +00:00
|
|
|
logger.debug("Short calibration finished")
|
2023-08-18 09:02:08 +00:00
|
|
|
self.module.model.short_calibration = S11Data(self.module.model.data_points.copy())
|
2023-08-08 15:09:28 +00:00
|
|
|
self.module.model.active_calibration = None
|
|
|
|
self.module.view.frequency_sweep_spinner.hide()
|
2023-08-09 09:57:34 +00:00
|
|
|
# If the text starts with 'r' and an open calibration is active we know that the data is an open calibration
|
2023-08-18 09:02:08 +00:00
|
|
|
elif text.startswith("r") and self.module.model.active_calibration == "open":
|
2023-08-08 15:09:28 +00:00
|
|
|
logger.debug("Open calibration finished")
|
2023-08-18 09:02:08 +00:00
|
|
|
self.module.model.open_calibration = S11Data(self.module.model.data_points.copy())
|
2023-08-08 15:09:28 +00:00
|
|
|
self.module.model.active_calibration = None
|
|
|
|
self.module.view.frequency_sweep_spinner.hide()
|
2023-08-09 09:57:34 +00:00
|
|
|
# If the text starts with 'r' and a load calibration is active we know that the data is a load calibration
|
2023-08-18 09:02:08 +00:00
|
|
|
elif text.startswith("r") and self.module.model.active_calibration == "load":
|
2023-08-08 15:09:28 +00:00
|
|
|
logger.debug("Load calibration finished")
|
2023-08-18 09:02:08 +00:00
|
|
|
self.module.model.load_calibration = S11Data(self.module.model.data_points.copy())
|
2023-08-08 15:09:28 +00:00
|
|
|
self.module.model.active_calibration = None
|
|
|
|
self.module.view.frequency_sweep_spinner.hide()
|
2023-08-09 09:57:34 +00:00
|
|
|
# If the text starts with 'i' we know that the data is an info message
|
|
|
|
elif text.startswith("i"):
|
|
|
|
text = "ATM Info: " + text[1:]
|
|
|
|
self.module.view.add_info_text(text)
|
|
|
|
# If the text starts with 'e' we know that the data is an error message
|
|
|
|
elif text.startswith("e"):
|
|
|
|
text = "ATM Error: " + text[1:]
|
2023-08-07 12:34:41 +00:00
|
|
|
self.module.view.add_info_text(text)
|
2023-08-16 14:23:23 +00:00
|
|
|
# If the text starts with 'v' we know that the data is a voltage sweep result
|
|
|
|
elif text.startswith("v"):
|
|
|
|
text = text[1:]
|
|
|
|
text = text.split("t")
|
|
|
|
matching_voltage = float(text[0])
|
|
|
|
tuning_voltage = float(text[1])
|
|
|
|
# Now we add the datapoint to the current LUT
|
|
|
|
LUT = self.module.model.LUT
|
|
|
|
logger.debug(
|
|
|
|
"Received voltage sweep result: %s %s",
|
|
|
|
matching_voltage,
|
|
|
|
tuning_voltage,
|
|
|
|
)
|
|
|
|
LUT.add_voltages(matching_voltage, tuning_voltage)
|
|
|
|
|
|
|
|
# Start the next voltage sweep if there are more voltages to sweep
|
|
|
|
if LUT.is_incomplete():
|
|
|
|
next_frequency = LUT.get_next_frequency()
|
|
|
|
command = "s%s" % next_frequency
|
|
|
|
LUT.started_frequency = next_frequency
|
|
|
|
logger.debug("Starting next voltage sweep: %s", command)
|
|
|
|
serial.write(command.encode("utf-8"))
|
|
|
|
|
2023-08-18 09:02:08 +00:00
|
|
|
def on_short_calibration(self, start_frequency: float, stop_frequency: float) -> None:
|
2023-08-08 15:09:28 +00:00
|
|
|
"""This method is called when the short calibration button is pressed.
|
|
|
|
It starts a frequency sweep in the specified range and then starts a short calibration.
|
|
|
|
"""
|
|
|
|
logger.debug("Starting short calibration")
|
|
|
|
self.module.model.init_short_calibration()
|
|
|
|
self.start_frequency_sweep(start_frequency, stop_frequency)
|
|
|
|
|
2023-08-18 09:02:08 +00:00
|
|
|
def on_open_calibration(self, start_frequency: float, stop_frequency: float) -> None:
|
2023-08-08 15:09:28 +00:00
|
|
|
"""This method is called when the open calibration button is pressed.
|
|
|
|
It starts a frequency sweep in the specified range and then starts an open calibration.
|
|
|
|
"""
|
|
|
|
logger.debug("Starting open calibration")
|
|
|
|
self.module.model.init_open_calibration()
|
|
|
|
self.start_frequency_sweep(start_frequency, stop_frequency)
|
|
|
|
|
2023-08-18 09:02:08 +00:00
|
|
|
def on_load_calibration(self, start_frequency: float, stop_frequency: float) -> None:
|
2023-08-08 15:09:28 +00:00
|
|
|
"""This method is called when the load calibration button is pressed.
|
|
|
|
It starts a frequency sweep in the specified range and then loads a calibration.
|
|
|
|
"""
|
|
|
|
logger.debug("Starting load calibration")
|
|
|
|
self.module.model.init_load_calibration()
|
|
|
|
self.start_frequency_sweep(start_frequency, stop_frequency)
|
|
|
|
|
|
|
|
def calculate_calibration(self) -> None:
|
|
|
|
"""This method is called when the calculate calibration button is pressed.
|
|
|
|
It calculates the calibration from the short, open and calibration data points.
|
2023-08-10 07:07:51 +00:00
|
|
|
|
2023-08-18 09:02:08 +00:00
|
|
|
@TODO: Improvements to the calibrations can be made the following ways:
|
|
|
|
|
2023-08-16 14:23:23 +00:00
|
|
|
1. The ideal values for open, short and load should be measured with a VNA and then be loaded for the calibration.
|
2023-08-10 07:07:51 +00:00
|
|
|
The ideal values are probably not -1, 1 and 0 but will also show frequency dependent behaviour.
|
|
|
|
2 The AD8302 chip only returns the absolute value of the phase. One would probably need to calculate the phase with various algorithms found in the literature.
|
|
|
|
Though Im not sure if these proposed algorithms would work for the AD8302 chip.
|
2023-08-08 15:09:28 +00:00
|
|
|
"""
|
|
|
|
logger.debug("Calculating calibration")
|
|
|
|
# First we check if the short and open calibration data points are available
|
|
|
|
if self.module.model.short_calibration == None:
|
2023-08-18 09:02:08 +00:00
|
|
|
logger.error("Could not calculate calibration. No short calibration data points available.")
|
2023-08-08 15:09:28 +00:00
|
|
|
return
|
|
|
|
if self.module.model.open_calibration == None:
|
2023-08-18 09:02:08 +00:00
|
|
|
logger.error("Could not calculate calibration. No open calibration data points available.")
|
2023-08-08 15:09:28 +00:00
|
|
|
return
|
|
|
|
if self.module.model.load_calibration == None:
|
2023-08-18 09:02:08 +00:00
|
|
|
logger.error("Could not calculate calibration. No load calibration data points available.")
|
2023-08-08 15:09:28 +00:00
|
|
|
return
|
2023-08-16 14:23:23 +00:00
|
|
|
|
2023-08-08 15:09:28 +00:00
|
|
|
# Then we calculate the calibration
|
|
|
|
ideal_gamma_short = -1
|
|
|
|
ideal_gamma_open = 1
|
|
|
|
ideal_gamma_load = 0
|
|
|
|
|
2023-08-09 14:32:13 +00:00
|
|
|
measured_gamma_short = self.module.model.short_calibration.gamma
|
|
|
|
measured_gamma_open = self.module.model.open_calibration.gamma
|
|
|
|
measured_gamma_load = self.module.model.load_calibration.gamma
|
2023-08-08 15:09:28 +00:00
|
|
|
|
2023-08-18 09:02:08 +00:00
|
|
|
e_00s = []
|
|
|
|
e_11s = []
|
|
|
|
delta_es = []
|
|
|
|
for gamma_s, gamma_o, gamma_l in zip(measured_gamma_short, measured_gamma_open, measured_gamma_load):
|
2023-08-16 14:23:23 +00:00
|
|
|
# This is the solution from
|
2023-08-18 09:02:08 +00:00
|
|
|
A = np.array(
|
|
|
|
[
|
|
|
|
[1, ideal_gamma_short * gamma_s, -ideal_gamma_short],
|
|
|
|
[1, ideal_gamma_open * gamma_o, -ideal_gamma_open],
|
|
|
|
[1, ideal_gamma_load * gamma_l, -ideal_gamma_load],
|
|
|
|
]
|
|
|
|
)
|
2023-08-08 15:09:28 +00:00
|
|
|
|
2023-08-18 09:02:08 +00:00
|
|
|
B = np.array([gamma_s, gamma_o, gamma_l])
|
2023-08-08 15:09:28 +00:00
|
|
|
|
|
|
|
# Solve the system
|
2023-08-18 09:02:08 +00:00
|
|
|
e_00, e11, delta_e = np.linalg.lstsq(A, B, rcond=None)[0]
|
2023-08-08 15:09:28 +00:00
|
|
|
|
2023-08-18 09:02:08 +00:00
|
|
|
e_00s.append(e_00)
|
|
|
|
e_11s.append(e11)
|
|
|
|
delta_es.append(delta_e)
|
2023-08-08 15:09:28 +00:00
|
|
|
|
2023-08-18 09:02:08 +00:00
|
|
|
self.module.model.calibration = (e_00s, e_11s, delta_es)
|
2023-08-09 14:32:13 +00:00
|
|
|
|
|
|
|
def export_calibration(self, filename: str) -> None:
|
|
|
|
"""This method is called when the export calibration button is pressed.
|
|
|
|
It exports the data of the short, open and load calibration to a file.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
filename (str): The filename of the file to export to.
|
|
|
|
"""
|
|
|
|
logger.debug("Exporting calibration")
|
|
|
|
# First we check if the short and open calibration data points are available
|
|
|
|
if self.module.model.short_calibration == None:
|
2023-08-18 09:02:08 +00:00
|
|
|
logger.error("Could not export calibration. No short calibration data points available.")
|
2023-08-09 14:32:13 +00:00
|
|
|
return
|
2023-08-16 14:23:23 +00:00
|
|
|
|
2023-08-09 14:32:13 +00:00
|
|
|
if self.module.model.open_calibration == None:
|
2023-08-18 09:02:08 +00:00
|
|
|
logger.error("Could not export calibration. No open calibration data points available.")
|
2023-08-09 14:32:13 +00:00
|
|
|
return
|
2023-08-16 14:23:23 +00:00
|
|
|
|
2023-08-09 14:32:13 +00:00
|
|
|
if self.module.model.load_calibration == None:
|
2023-08-18 09:02:08 +00:00
|
|
|
logger.error("Could not export calibration. No load calibration data points available.")
|
2023-08-09 14:32:13 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
# Then we export the different calibrations as a json file
|
|
|
|
data = {
|
|
|
|
"short": self.module.model.short_calibration.to_json(),
|
|
|
|
"open": self.module.model.open_calibration.to_json(),
|
2023-08-16 14:23:23 +00:00
|
|
|
"load": self.module.model.load_calibration.to_json(),
|
2023-08-09 14:32:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
with open(filename, "w") as f:
|
|
|
|
json.dump(data, f)
|
|
|
|
|
|
|
|
def import_calibration(self, filename: str) -> None:
|
|
|
|
"""This method is called when the import calibration button is pressed.
|
|
|
|
It imports the data of the short, open and load calibration from a file.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
filename (str): The filename of the file to import from.
|
|
|
|
"""
|
|
|
|
logger.debug("Importing calibration")
|
|
|
|
|
|
|
|
# We import the different calibrations from a json file
|
|
|
|
with open(filename, "r") as f:
|
|
|
|
data = json.load(f)
|
|
|
|
self.module.model.short_calibration = S11Data.from_json(data["short"])
|
|
|
|
self.module.model.open_calibration = S11Data.from_json(data["open"])
|
2023-08-11 12:45:05 +00:00
|
|
|
self.module.model.load_calibration = S11Data.from_json(data["load"])
|
|
|
|
|
2023-08-16 14:23:23 +00:00
|
|
|
def set_voltages(self, tuning_voltage: str, matching_voltage: str) -> None:
|
2023-08-11 12:45:05 +00:00
|
|
|
"""This method is called when the set voltages button is pressed.
|
|
|
|
It writes the specified tuning and matching voltage to the serial connection.
|
2023-08-16 14:23:23 +00:00
|
|
|
|
2023-08-11 12:45:05 +00:00
|
|
|
Args:
|
|
|
|
tuning_voltage (str): The tuning voltage in V.
|
|
|
|
matching_voltage (str): The matching voltage in V.
|
|
|
|
"""
|
|
|
|
logger.debug("Setting voltages")
|
2023-08-16 14:23:23 +00:00
|
|
|
MAX_VOLTAGE = 5 # V
|
2023-08-11 12:45:05 +00:00
|
|
|
try:
|
2023-08-16 08:37:09 +00:00
|
|
|
tuning_voltage = tuning_voltage.replace(",", ".")
|
|
|
|
matching_voltage = matching_voltage.replace(",", ".")
|
2023-08-11 12:45:05 +00:00
|
|
|
tuning_voltage = float(tuning_voltage)
|
|
|
|
matching_voltage = float(matching_voltage)
|
|
|
|
except ValueError:
|
|
|
|
error = "Could not set voltages. Tuning and matching voltage must be floats"
|
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
2023-08-16 14:23:23 +00:00
|
|
|
|
2023-08-11 12:45:05 +00:00
|
|
|
if tuning_voltage < 0 or matching_voltage < 0:
|
2023-08-18 09:02:08 +00:00
|
|
|
error = "Could not set voltages. Tuning and matching voltage must be positive"
|
2023-08-11 12:45:05 +00:00
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
2023-08-16 14:23:23 +00:00
|
|
|
|
2023-08-11 12:45:05 +00:00
|
|
|
if tuning_voltage > MAX_VOLTAGE or matching_voltage > MAX_VOLTAGE:
|
|
|
|
error = "Could not set voltages. Tuning and matching voltage must be between 0 and 5 V"
|
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
2023-08-16 14:23:23 +00:00
|
|
|
|
|
|
|
logger.debug(
|
|
|
|
"Setting tuning voltage to %s V and matching voltage to %s V",
|
|
|
|
tuning_voltage,
|
|
|
|
matching_voltage,
|
|
|
|
)
|
2023-08-11 12:45:05 +00:00
|
|
|
try:
|
|
|
|
command = "v%sv%s" % (matching_voltage, tuning_voltage)
|
2023-08-16 14:23:23 +00:00
|
|
|
self.module.model.serial.write(command.encode("utf-8"))
|
2023-08-11 12:45:05 +00:00
|
|
|
except AttributeError:
|
|
|
|
logger.error("Could not set voltages. No device connected.")
|
2023-08-16 14:23:23 +00:00
|
|
|
|
|
|
|
def generate_lut(
|
|
|
|
self,
|
|
|
|
start_frequency: str,
|
|
|
|
stop_frequency: str,
|
|
|
|
frequency_step: str,
|
|
|
|
voltage_resolution: str,
|
|
|
|
) -> None:
|
|
|
|
"""This method is called when the generate LUT button is pressed.
|
|
|
|
It generates a lookup table for the specified frequency range and voltage resolution.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
start_frequency (str): The start frequency in Hz.
|
|
|
|
stop_frequency (str): The stop frequency in Hz.
|
|
|
|
frequency_step (str): The frequency step in Hz.
|
|
|
|
voltage_resolution (str): The voltage resolution in V.
|
|
|
|
"""
|
|
|
|
logger.debug("Generating LUT")
|
|
|
|
try:
|
|
|
|
start_frequency = start_frequency.replace(",", ".")
|
|
|
|
stop_frequency = stop_frequency.replace(",", ".")
|
|
|
|
frequency_step = frequency_step.replace(",", ".")
|
|
|
|
voltage_resolution = voltage_resolution.replace(",", ".")
|
|
|
|
start_frequency = float(start_frequency)
|
|
|
|
stop_frequency = float(stop_frequency)
|
|
|
|
frequency_step = float(frequency_step)
|
|
|
|
voltage_resolution = float(voltage_resolution)
|
|
|
|
except ValueError:
|
|
|
|
error = "Could not generate LUT. Start frequency, stop frequency, frequency step and voltage resolution must be floats"
|
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
|
|
|
|
2023-08-18 09:02:08 +00:00
|
|
|
if start_frequency < 0 or stop_frequency < 0 or frequency_step < 0 or voltage_resolution < 0:
|
2023-08-16 14:23:23 +00:00
|
|
|
error = "Could not generate LUT. Start frequency, stop frequency, frequency step and voltage resolution must be positive"
|
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
|
|
|
|
|
|
|
if start_frequency > stop_frequency:
|
|
|
|
error = "Could not generate LUT. Start frequency must be smaller than stop frequency"
|
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
|
|
|
|
|
|
|
if frequency_step > (stop_frequency - start_frequency):
|
|
|
|
error = "Could not generate LUT. Frequency step must be smaller than the frequency range"
|
|
|
|
logger.error(error)
|
|
|
|
self.module.view.add_info_text(error)
|
|
|
|
return
|
|
|
|
|
|
|
|
logger.debug(
|
|
|
|
"Generating LUT from %s MHz to %s MHz with a frequency step of %s MHz and a voltage resolution of %s V",
|
|
|
|
start_frequency,
|
|
|
|
stop_frequency,
|
|
|
|
frequency_step,
|
|
|
|
voltage_resolution,
|
|
|
|
)
|
|
|
|
|
|
|
|
# We create the lookup table
|
2023-08-18 09:02:08 +00:00
|
|
|
LUT = LookupTable(start_frequency, stop_frequency, frequency_step, voltage_resolution)
|
2023-08-16 14:23:23 +00:00
|
|
|
|
|
|
|
LUT.started_frequency = start_frequency
|
|
|
|
self.module.model.LUT = LUT
|
|
|
|
|
|
|
|
# We write the first command to the serial connection
|
|
|
|
command = "s%s" % (start_frequency)
|
|
|
|
self.module.model.serial.write(command.encode("utf-8"))
|