# NanoVNASaver # # A python program to view and export Touchstone data from a NanoVNA # Copyright (C) 2019, 2020 Rune B. Broberg # Copyright (C) 2020,2021 NanoVNA-Saver Authors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . import math import logging from typing import List from PyQt5 import QtGui from NanoVNASaver.RFTools import Datapoint from NanoVNASaver.Charts.Chart import Chart from NanoVNASaver.Charts.Frequency import FrequencyChart from NanoVNASaver.Charts.LogMag import LogMagChart logger = logging.getLogger(__name__) class SParameterChart(FrequencyChart): def __init__(self, name=""): super().__init__(name) self.minDisplayValue = -1 self.maxDisplayValue = 1 self.fixedValues = True self.y_action_automatic.setChecked(False) self.y_action_fixed_span.setChecked(True) self.minValue = 0 self.maxValue = 1 self.span = 1 self.isInverted = False def drawChart(self, qp: QtGui.QPainter): qp.setPen(QtGui.QPen(Chart.color.text)) qp.drawText(int(round(self.dim.width / 2)) - 20, 15, self.name + "") qp.drawText(10, 15, "Real") qp.drawText(self.leftMargin + self.dim.width - 15, 15, "Imag") qp.setPen(QtGui.QPen(Chart.color.foreground)) qp.drawLine(self.leftMargin, self.topMargin - 5, self.leftMargin, self.topMargin+self.dim.height+5) qp.drawLine(self.leftMargin-5, self.topMargin+self.dim.height, self.leftMargin+self.dim.width, self.topMargin + self.dim.height) def drawValues(self, qp: QtGui.QPainter): if len(self.data) == 0 and len(self.reference) == 0: return self._set_start_stop() # Draw bands if required if self.bands.enabled: self.drawBands(qp, self.fstart, self.fstop) if self.fixedValues: maxValue = self.maxDisplayValue minValue = self.minDisplayValue self.maxValue = maxValue self.minValue = minValue else: # Find scaling minValue = -1 maxValue = 1 self.maxValue = maxValue self.minValue = minValue # for d in self.data: # val = d.re # if val > maxValue: # maxValue = val # if val < minValue: # minValue = val # for d in self.reference: # Also check min/max for the reference sweep # if d.freq < self.fstart or d.freq > self.fstop: # continue # logmag = self.logMag(d) # if logmag > maxValue: # maxValue = logmag # if logmag < minValue: # minValue = logmag # minValue = 10*math.floor(minValue/10) # self.minValue = minValue # maxValue = 10*math.ceil(maxValue/10) # self.maxValue = maxValue span = maxValue-minValue if span == 0: span = 0.01 self.span = span tick_count = math.floor(self.dim.height / 60) tick_step = self.span / tick_count for i in range(tick_count): val = minValue + i * tick_step y = self.topMargin + round((maxValue - val)/span*self.dim.height) qp.setPen(QtGui.QPen(Chart.color.foreground)) qp.drawLine(self.leftMargin-5, y, self.leftMargin+self.dim.width, y) if val > minValue and val != maxValue: qp.setPen(QtGui.QPen(Chart.color.text)) qp.drawText(3, y + 4, str(round(val, 2))) qp.setPen(QtGui.QPen(Chart.color.foreground)) qp.drawLine(self.leftMargin - 5, self.topMargin, self.leftMargin + self.dim.width, self.topMargin) qp.setPen(Chart.color.text) qp.drawText(3, self.topMargin + 4, str(maxValue)) qp.drawText(3, self.dim.height+self.topMargin, str(minValue)) self.drawFrequencyTicks(qp) self.drawData(qp, self.data, Chart.color.sweep, self.getReYPosition) self.drawData(qp, self.reference, Chart.color.reference, self.getReYPosition) self.drawData(qp, self.data, Chart.color.sweep_secondary, self.getImYPosition) self.drawData(qp, self.reference, Chart.color.reference_secondary, self.getImYPosition) self.drawMarkers(qp, y_function=self.getReYPosition) self.drawMarkers(qp, y_function=self.getImYPosition) def getYPosition(self, d: Datapoint) -> int: return self.topMargin + round((self.maxValue - d.re) / self.span * self.dim.height) def getReYPosition(self, d: Datapoint) -> int: return self.topMargin + round((self.maxValue - d.re) / self.span * self.dim.height) def getImYPosition(self, d: Datapoint) -> int: return self.topMargin + round((self.maxValue - d.im) / self.span * self.dim.height) def valueAtPosition(self, y) -> List[float]: absy = y - self.topMargin val = -1 * ((absy / self.dim.height * self.span) - self.maxValue) return [val] def logMag(self, p: Datapoint) -> float: if self.isInverted: return -p.gain return p.gain def copy(self): new_chart: LogMagChart = super().copy() new_chart.isInverted = self.isInverted new_chart.span = self.span return new_chart