mirror of
https://github.com/nqrduck/nqrduck-spectrometer.git
synced 2024-11-09 20:40:02 +00:00
Changed to decimals.
This commit is contained in:
parent
b36b8a7269
commit
f5cc56d8a7
1 changed files with 48 additions and 8 deletions
|
@ -1,6 +1,7 @@
|
||||||
import logging
|
import logging
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import sympy
|
import sympy
|
||||||
|
from decimal import Decimal
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from PyQt6.QtGui import QPixmap
|
from PyQt6.QtGui import QPixmap
|
||||||
from nqrduck.contrib.mplwidget import MplWidget
|
from nqrduck.contrib.mplwidget import MplWidget
|
||||||
|
@ -14,25 +15,25 @@ class Function:
|
||||||
name: str
|
name: str
|
||||||
parameters: list
|
parameters: list
|
||||||
expression: str | sympy.Expr
|
expression: str | sympy.Expr
|
||||||
resolution: float
|
resolution: Decimal
|
||||||
start_x: float
|
start_x: float
|
||||||
end_x: float
|
end_x: float
|
||||||
|
|
||||||
def __init__(self, expr) -> None:
|
def __init__(self, expr) -> None:
|
||||||
self.parameters = []
|
self.parameters = []
|
||||||
self.expr = expr
|
self.expr = expr
|
||||||
self.resolution = 1/30.72e6
|
self.resolution = Decimal(1/30.72e6)
|
||||||
self.start_x = -1
|
self.start_x = -1
|
||||||
self.end_x = 1
|
self.end_x = 1
|
||||||
|
|
||||||
def get_time_points(self, pulse_length: float) -> np.ndarray:
|
def get_time_points(self, pulse_length: Decimal) -> np.ndarray:
|
||||||
"""Returns the time domain points for the function with the given pulse length."""
|
"""Returns the time domain points for the function with the given pulse length."""
|
||||||
# Get the time domain points
|
# Get the time domain points
|
||||||
n = int(pulse_length / self.resolution)
|
n = int(pulse_length / self.resolution)
|
||||||
t = np.linspace(0, pulse_length, n)
|
t = np.linspace(0, float(pulse_length), n)
|
||||||
return t
|
return t
|
||||||
|
|
||||||
def evaluate(self, pulse_length: float) -> np.ndarray:
|
def evaluate(self, pulse_length: Decimal) -> np.ndarray:
|
||||||
"""Evaluates the function for the given pulse length."""
|
"""Evaluates the function for the given pulse length."""
|
||||||
n = int(pulse_length / self.resolution)
|
n = int(pulse_length / self.resolution)
|
||||||
t = np.linspace(self.start_x, self.end_x, n)
|
t = np.linspace(self.start_x, self.end_x, n)
|
||||||
|
@ -52,7 +53,7 @@ class Function:
|
||||||
|
|
||||||
return f(t)
|
return f(t)
|
||||||
|
|
||||||
def frequency_domain_plot(self, pulse_length: float) -> MplWidget:
|
def frequency_domain_plot(self, pulse_length: Decimal) -> MplWidget:
|
||||||
mpl_widget = MplWidget()
|
mpl_widget = MplWidget()
|
||||||
td = self.get_time_points(pulse_length)
|
td = self.get_time_points(pulse_length)
|
||||||
yd = self.evaluate(pulse_length)
|
yd = self.evaluate(pulse_length)
|
||||||
|
@ -63,7 +64,7 @@ class Function:
|
||||||
mpl_widget.canvas.ax.grid(True)
|
mpl_widget.canvas.ax.grid(True)
|
||||||
return mpl_widget
|
return mpl_widget
|
||||||
|
|
||||||
def time_domain_plot(self, pulse_length: float) -> MplWidget:
|
def time_domain_plot(self, pulse_length: Decimal) -> MplWidget:
|
||||||
mpl_widget = MplWidget()
|
mpl_widget = MplWidget()
|
||||||
td = self.get_time_points(pulse_length)
|
td = self.get_time_points(pulse_length)
|
||||||
mpl_widget.canvas.ax.plot(td, self.evaluate(pulse_length))
|
mpl_widget.canvas.ax.plot(td, self.evaluate(pulse_length))
|
||||||
|
@ -72,7 +73,7 @@ class Function:
|
||||||
mpl_widget.canvas.ax.grid(True)
|
mpl_widget.canvas.ax.grid(True)
|
||||||
return mpl_widget
|
return mpl_widget
|
||||||
|
|
||||||
def get_pulse_amplitude(self, pulse_length: float) -> np.array:
|
def get_pulse_amplitude(self, pulse_length: Decimal) -> np.array:
|
||||||
"""Returns the pulse amplitude in the time domain."""
|
"""Returns the pulse amplitude in the time domain."""
|
||||||
return self.evaluate(pulse_length)
|
return self.evaluate(pulse_length)
|
||||||
|
|
||||||
|
@ -124,6 +125,45 @@ class Function:
|
||||||
elif isinstance(expr, sympy.Expr):
|
elif isinstance(expr, sympy.Expr):
|
||||||
self._expr = expr
|
self._expr = expr
|
||||||
|
|
||||||
|
@property
|
||||||
|
def resolution(self):
|
||||||
|
""" The resolution of the function in seconds."""
|
||||||
|
return self._resolution
|
||||||
|
|
||||||
|
@resolution.setter
|
||||||
|
def resolution(self, resolution):
|
||||||
|
try:
|
||||||
|
self._resolution = Decimal(resolution)
|
||||||
|
except:
|
||||||
|
logger.error("Could not convert %s to a decimal", resolution)
|
||||||
|
raise SyntaxError("Could not convert %s to a decimal" % resolution)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def start_x(self):
|
||||||
|
""" The x value where the evalution of the function starts."""
|
||||||
|
return self._start_x
|
||||||
|
|
||||||
|
@start_x.setter
|
||||||
|
def start_x(self, start_x):
|
||||||
|
try:
|
||||||
|
self._start_x = float(start_x)
|
||||||
|
except:
|
||||||
|
logger.error("Could not convert %s to a float", start_x)
|
||||||
|
raise SyntaxError("Could not convert %s to a float" % start_x)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def end_x(self):
|
||||||
|
""" The x value where the evalution of the function ends."""
|
||||||
|
return self._end_x
|
||||||
|
|
||||||
|
@end_x.setter
|
||||||
|
def end_x(self, end_x):
|
||||||
|
try:
|
||||||
|
self._end_x = float(end_x)
|
||||||
|
except:
|
||||||
|
logger.error("Could not convert %s to a float", end_x)
|
||||||
|
raise SyntaxError("Could not convert %s to a float" % end_x)
|
||||||
|
|
||||||
|
|
||||||
class Parameter:
|
class Parameter:
|
||||||
def __init__(self, name: str, symbol: str, value: float) -> None:
|
def __init__(self, name: str, symbol: str, value: float) -> None:
|
||||||
|
|
Loading…
Reference in a new issue