1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462
|
# Copyright (c) DataLab Platform Developers, BSD 3-Clause license, see LICENSE file.
"""
Signal creation utilities
========================
This module provides functions and parameter classes for creating new signals.
The module includes:
- `create_signal_from_param`: Factory function for creating SignalObj instances
from parameters
- `SignalTypes`: Enumeration of supported signal generation types
- `NewSignalParam` and subclasses: Parameter classes for signal generation
- Factory functions and registration utilities
These utilities support creating signals from various sources:
- Synthetic data (zeros, random distributions, analytical functions)
- Periodic functions (sine, cosine, square, etc.)
- Step functions, chirps, pulses
- Custom user-defined signals
"""
# pylint: disable=invalid-name # Allows short reference names like x, y, ...
# pylint: disable=duplicate-code
from __future__ import annotations
import enum
from dataclasses import dataclass
from typing import Literal, Type
import guidata.dataset as gds
import numpy as np
import scipy.constants
import scipy.signal as sps
from sigima.config import _
from sigima.enums import SignalShape
from sigima.objects import base
from sigima.objects.signal.object import SignalObj
from sigima.tools.signal.pulse import GaussianModel, LorentzianModel, VoigtModel
def create_signal(
title: str,
x: np.ndarray | None = None,
y: np.ndarray | None = None,
dx: np.ndarray | None = None,
dy: np.ndarray | None = None,
metadata: dict | None = None,
units: tuple[str, str] | None = None,
labels: tuple[str, str] | None = None,
) -> SignalObj:
"""Create a new Signal object.
Args:
title: signal title
x: X data
y: Y data
dx: dX data (optional: error bars)
dy: dY data (optional: error bars)
metadata: signal metadata
units: X, Y units (tuple of strings)
labels: X, Y labels (tuple of strings)
Returns:
Signal object
"""
assert isinstance(title, str)
signal = SignalObj(title=title)
signal.title = title
signal.set_xydata(x, y, dx=dx, dy=dy)
if units is not None:
signal.xunit, signal.yunit = units
if labels is not None:
signal.xlabel, signal.ylabel = labels
if metadata is not None:
signal.metadata.update(metadata)
return signal
class SignalTypes(gds.LabeledEnum):
"""Signal types"""
#: Signal filled with zero
ZERO = "zero", _("Zero")
#: Random signal (normal distribution)
NORMAL_DISTRIBUTION = "normal_distribution", _("Normal distribution")
#: Random signal (Poisson distribution)
POISSON_DISTRIBUTION = "poisson_distribution", _("Poisson distribution")
#: Random signal (uniform distribution)
UNIFORM_DISTRIBUTION = "uniform_distribution", _("Uniform distribution")
#: Gaussian function
GAUSS = "gauss", _("Gaussian")
#: Lorentzian function
LORENTZ = "lorentz", _("Lorentzian")
#: Voigt function
VOIGT = "voigt", _("Voigt")
#: Planck function
PLANCK = "planck", _("Blackbody (Planck)")
#: Sinusoid
SINE = "sine", _("Sine")
#: Cosinusoid
COSINE = "cosine", _("Cosine")
#: Sawtooth function
SAWTOOTH = "sawtooth", _("Sawtooth")
#: Triangle function
TRIANGLE = "triangle", _("Triangle")
#: Square function
SQUARE = "square", _("Square")
#: Cardinal sine
SINC = "sinc", _("Cardinal sine")
#: Linear chirp
LINEARCHIRP = "linearchirp", _("Linear chirp")
#: Step function
STEP = "step", _("Step")
#: Exponential function
EXPONENTIAL = "exponential", _("Exponential")
#: Logistic function
LOGISTIC = "logistic", _("Logistic")
#: Pulse function
PULSE = "pulse", _("Pulse")
#: Step pulse function (with configurable rise time)
STEP_PULSE = "step_pulse", _("Step pulse")
#: Square pulse function (with configurable rise/fall times)
SQUARE_PULSE = "square_pulse", _("Square pulse")
#: Polynomial function
POLYNOMIAL = "polynomial", _("Polynomial")
#: Custom function
CUSTOM = "custom", _("Custom")
DEFAULT_TITLE = _("Untitled signal")
class NewSignalParam(gds.DataSet):
"""New signal dataset.
Subclasses can optionally implement a ``generate_title()`` method to provide
automatic title generation based on their parameters. This method should return
a string containing the generated title, or an empty string if no title can be
generated.
Example::
def generate_title(self) -> str:
'''Generate a title based on current parameters.'''
return f"MySignal(param1={self.param1},param2={self.param2})"
"""
title = gds.StringItem(_("Title"), default=DEFAULT_TITLE)
size = gds.IntItem(
_("N<sub>points</sub>"),
help=_("Total number of points in the signal"),
min=1,
default=500,
)
xmin = gds.FloatItem("x<sub>min</sub>", default=-10.0)
xmax = gds.FloatItem("x<sub>max</sub>", default=10.0).set_prop("display", col=1)
xlabel = gds.StringItem(_("X label"), default="")
xunit = gds.StringItem(_("X unit"), default="").set_prop("display", col=1)
ylabel = gds.StringItem(_("Y label"), default="")
yunit = gds.StringItem(_("Y unit"), default="").set_prop("display", col=1)
# As it is the last item of the dataset, the separator will be hidden if no other
# items are present after it (i.e. when derived classes do not add any new items
# or when the NewSignalParam class is used alone).
sep = gds.SeparatorItem()
def generate_x_data(self) -> np.ndarray:
"""Generate x data based on current parameters."""
return np.linspace(self.xmin, self.xmax, self.size)
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays
"""
return self.generate_x_data(), np.zeros(self.size)
SIGNAL_TYPE_PARAM_CLASSES = {}
def register_signal_parameters_class(stype: SignalTypes, param_class) -> None:
"""Register a parameters class for a given signal type.
Args:
stype: signal type
param_class: parameters class
"""
SIGNAL_TYPE_PARAM_CLASSES[stype] = param_class
def __get_signal_parameters_class(stype: SignalTypes) -> Type[NewSignalParam]:
"""Get parameters class for a given signal type.
Args:
stype: signal type
Returns:
Parameters class
Raises:
ValueError: if no parameters class is registered for the given signal type
"""
try:
return SIGNAL_TYPE_PARAM_CLASSES[stype]
except KeyError as exc:
raise ValueError(
f"Image type {stype} has no parameters class registered"
) from exc
def check_all_signal_parameters_classes() -> None:
"""Check all registered parameters classes."""
for stype, param_class in SIGNAL_TYPE_PARAM_CLASSES.items():
assert __get_signal_parameters_class(stype) is param_class
def create_signal_parameters(
stype: SignalTypes,
title: str | None = None,
size: int | None = None,
xmin: float | None = None,
xmax: float | None = None,
xlabel: str | None = None,
ylabel: str | None = None,
xunit: str | None = None,
yunit: str | None = None,
**kwargs: dict,
) -> NewSignalParam:
"""Create parameters for a given signal type.
Args:
stype: signal type
title: signal title
size: signal size (number of points)
xmin: minimum x value
xmax: maximum x value
xlabel: x axis label
ylabel: y axis label
xunit: x axis unit
yunit: y axis unit
**kwargs: additional parameters (specific to the signal type)
Returns:
Parameters object for the given signal type
"""
pclass = __get_signal_parameters_class(stype)
p = pclass.create(**kwargs)
if title is not None:
p.title = title
if size is not None:
p.size = size
if xmin is not None:
p.xmin = xmin
if xmax is not None:
p.xmax = xmax
if xlabel is not None:
p.xlabel = xlabel
if ylabel is not None:
p.ylabel = ylabel
if xunit is not None:
p.xunit = xunit
if yunit is not None:
p.yunit = yunit
return p
class ZeroParam(NewSignalParam, title=_("Zero")):
"""Parameters for zero signal."""
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays.
"""
x = self.generate_x_data()
return x, np.zeros_like(x)
register_signal_parameters_class(SignalTypes.ZERO, ZeroParam)
class UniformDistribution1DParam(
NewSignalParam, base.UniformDistributionParam, title=_("Uniform distribution")
):
"""Uniform-distribution signal parameters."""
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays.
"""
x = self.generate_x_data()
rng = np.random.default_rng(self.seed)
assert self.vmin is not None
assert self.vmax is not None
y = self.vmin + rng.random(len(x)) * (self.vmax - self.vmin)
return x, y
register_signal_parameters_class(
SignalTypes.UNIFORM_DISTRIBUTION, UniformDistribution1DParam
)
class NormalDistribution1DParam(
NewSignalParam, base.NormalDistributionParam, title=_("Normal distribution")
):
"""Normal-distribution signal parameters."""
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays.
"""
x = self.generate_x_data()
rng = np.random.default_rng(self.seed)
assert self.mu is not None
assert self.sigma is not None
y = rng.normal(self.mu, self.sigma, len(x))
return x, y
register_signal_parameters_class(
SignalTypes.NORMAL_DISTRIBUTION, NormalDistribution1DParam
)
class PoissonDistribution1DParam(
NewSignalParam, base.PoissonDistributionParam, title=_("Poisson distribution")
):
"""Poisson-distribution signal parameters."""
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays.
"""
x = self.generate_x_data()
rng = np.random.default_rng(self.seed)
assert self.lam is not None
y = rng.poisson(lam=self.lam, size=len(x))
return x, y
register_signal_parameters_class(
SignalTypes.POISSON_DISTRIBUTION, PoissonDistribution1DParam
)
class BaseGaussLorentzVoigtParam(NewSignalParam):
"""Base parameters for Gaussian, Lorentzian and Voigt functions"""
STYPE: Type[SignalTypes] | None = None
a = gds.FloatItem("A", default=1.0)
y0 = gds.FloatItem("y<sub>0</sub>", default=0.0).set_pos(col=1)
sigma = gds.FloatItem("σ", default=1.0)
mu = gds.FloatItem("μ", default=0.0).set_pos(col=1)
def generate_title(self) -> str:
"""Generate a title based on current parameters."""
assert isinstance(self.STYPE, SignalTypes)
return (
f"{self.STYPE.name.lower()}(A={self.a:.3g},σ={self.sigma:.3g},"
f"μ={self.mu:.3g},y0={self.y0:.3g})"
)
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays
"""
x = self.generate_x_data()
func = {
SignalTypes.GAUSS: GaussianModel.func,
SignalTypes.LORENTZ: LorentzianModel.func,
SignalTypes.VOIGT: VoigtModel.func,
}[self.STYPE]
y = func(x, self.a, self.sigma, self.mu, self.y0)
return x, y
def get_expected_features(
self, start_ratio: float = 0.1, stop_ratio: float = 0.9
) -> ExpectedFeatures:
"""Calculate expected pulse features for this signal.
Args:
start_ratio: Start ratio for rise time calculation
stop_ratio: Stop ratio for rise time calculation
Returns:
ExpectedFeatures dataclass with all expected values
"""
if self.a is None or self.sigma is None:
raise ValueError("Parameters 'a' and 'sigma' must be set")
if self.a == 0 or self.sigma <= 0:
raise ValueError("Parameter 'a' must be non-zero and 'sigma' positive")
polarity = 1 if self.a > 0 else -1
# For Gaussian: peak amplitude is a / (sigma * sqrt(2*pi))
# This gives the actual maximum value of the Gaussian function
amplitude = abs(self.a) / (self.sigma * np.sqrt(2 * np.pi))
if self.STYPE == SignalTypes.GAUSS:
# Gaussian rise time: t_r = 2.563 * sigma (10% to 90%)
rise_time = 2.563 * self.sigma
elif self.STYPE == SignalTypes.LORENTZ:
# Lorentzian rise time: 2*sigma*sqrt(1/start_ratio - 1/stop_ratio)
rise_time = 2 * self.sigma * np.sqrt(1 / start_ratio - 1 / stop_ratio)
elif self.STYPE == SignalTypes.VOIGT:
# Voigt rise time: approximate as Gaussian for simplicity
rise_time = 2.563 * self.sigma
else:
raise ValueError(f"Unsupported signal type: {self.STYPE}")
# For Gaussian signals centered at mu
x_center = self.mu if self.mu is not None else 0.0
# Gaussian-specific calculations
if self.STYPE == SignalTypes.GAUSS:
# Time at 50% amplitude (FWHM calculation)
fwhm = 2.355 * self.sigma # Full Width at Half Maximum for Gaussian
# x50 is the 50% crossing on the rise (left side of peak)
x50 = x_center - self.sigma * np.sqrt(-2 * np.log(0.5)) # ~0.833σ
# Rise time from left 20% to left 80% (one-sided)
# For amplitude ratios: x = mu ± sigma * sqrt(-2 * ln(ratio))
t_20_left = x_center - self.sigma * np.sqrt(-2 * np.log(0.2)) # ~1.794σ
t_80_left = x_center - self.sigma * np.sqrt(-2 * np.log(0.8)) # ~0.668σ
actual_rise_time = abs(t_80_left - t_20_left)
# Fall time (symmetric for Gaussian)
fall_time = actual_rise_time
# Foot duration: For Gaussian, use approximation based on sigma
# Since Gaussian has no true flat foot, this is an approximation
foot_duration = 1.5 * self.sigma # Empirically derived approximation
else:
# For Lorentzian and Voigt, use approximations
x50 = x_center
actual_rise_time = rise_time # Use calculated rise_time
fall_time = rise_time
if self.STYPE == SignalTypes.LORENTZ:
fwhm = 2 * self.sigma
else:
fwhm = 2.355 * self.sigma
foot_duration = 2 * self.sigma # Approximation
return ExpectedFeatures(
signal_shape=SignalShape.SQUARE,
polarity=polarity,
amplitude=amplitude,
rise_time=actual_rise_time,
offset=self.y0 if self.y0 is not None else 0.0,
x50=x50,
x100=x_center, # Maximum is at center for Gaussian
foot_duration=foot_duration,
fall_time=fall_time,
fwhm=fwhm,
)
def get_feature_tolerances(self) -> FeatureTolerances:
"""Get absolute tolerance values for pulse feature validation.
Returns:
FeatureTolerances dataclass with adjusted tolerances for Gaussian signals
"""
# Gaussian signals may need slightly more relaxed tolerances due to smoothness
return FeatureTolerances(
rise_time=0.3, # Slightly higher tolerance for Gaussian rise time
fall_time=0.3, # Match rise time tolerance
x100=0.1, # Tighter tolerance for maximum position (should be exact)
fwhm=0.2, # Reasonable tolerance for FWHM
)
def get_crossing_time(self, edge: Literal["rise", "fall"], ratio: float) -> float:
"""Get the theoretical crossing time for the specified edge and ratio.
Args:
edge: Which edge to calculate ("rise" or "fall")
ratio: Crossing ratio (0.0 to 1.0)
Returns:
Theoretical crossing time for the specified edge and ratio
"""
if self.a is None or self.sigma is None or self.mu is None:
raise ValueError("Parameters 'a', 'sigma', and 'mu' must be set")
if self.a == 0 or self.sigma <= 0:
raise ValueError("Parameter 'a' must be non-zero and 'sigma' positive")
if not 0.0 < ratio < 1.0:
raise ValueError("Ratio must be between 0.0 and 1.0")
if self.STYPE != SignalTypes.GAUSS:
raise NotImplementedError(
"Crossing time calculation is only implemented for Gaussian signals"
)
# For Gaussian: x = mu ± sigma * sqrt(-2 * ln(ratio))
delta_x = self.sigma * np.sqrt(-2 * np.log(ratio))
if edge == "rise":
return self.mu - delta_x
if edge == "fall":
return self.mu + delta_x
raise ValueError("Edge must be 'rise' or 'fall'")
class GaussParam(
BaseGaussLorentzVoigtParam,
title=_("Gaussian"),
comment="y = y<sub>0</sub> + "
"A/(σ √(2π)) exp(-((x - μ)<sup>2</sup>) / (2 σ<sup>2</sup>))",
):
"""Parameters for Gaussian function."""
STYPE = SignalTypes.GAUSS
register_signal_parameters_class(SignalTypes.GAUSS, GaussParam)
class LorentzParam(
BaseGaussLorentzVoigtParam,
title=_("Lorentzian"),
comment="y = y<sub>0</sub> + A/(π σ (1 + ((x - μ)/σ)<sup>2</sup>))",
):
"""Parameters for Lorentzian function."""
STYPE = SignalTypes.LORENTZ
register_signal_parameters_class(SignalTypes.LORENTZ, LorentzParam)
class VoigtParam(
BaseGaussLorentzVoigtParam,
title=_("Voigt"),
comment="y = y<sub>0</sub> + "
"A Re[exp(-z<sup>2</sup>) erfc(-j z)] / (σ √(2π)), "
"with z = (x - μ - j σ) / (σ √2)",
):
"""Parameters for Voigt function."""
STYPE = SignalTypes.VOIGT
register_signal_parameters_class(SignalTypes.VOIGT, VoigtParam)
class PlanckParam(
NewSignalParam,
title=_("Blackbody (Planck)"),
comment="y = (2 h c<sup>2</sup>) / "
"(λ<sup>5</sup> (exp(h c / (λ k<sub>B</sub> T)) - 1))",
):
"""Planck radiation law."""
xmin = gds.FloatItem(
"λ<sub>min</sub>", default=1e-7, unit="m", min=0.0, nonzero=True
)
xmax = gds.FloatItem(
"λ<sub>max</sub>", default=1e-4, unit="m", min=0.0, nonzero=True
).set_prop("display", col=1)
T = gds.FloatItem(
"T", default=293.0, unit="K", min=0.0, nonzero=True, help=_("Temperature")
)
def generate_title(self) -> str:
"""Generate a title based on current parameters.
Returns:
Title string.
"""
return f"planck(T={self.T:.3g}K)"
@classmethod
def func(cls, wavelength: np.ndarray, temperature: float) -> np.ndarray:
"""Compute the Planck function.
Args:
wavelength: Wavelength (m).
T: Temperature (K).
Returns:
Spectral radiance (W m<sup>-2</sup> sr<sup>-1</sup> Hz<sup>-1</sup>).
"""
h = scipy.constants.h # Planck constant (J·s)
c = scipy.constants.c # Speed of light (m/s)
k = scipy.constants.k # Boltzmann constant (J/K)
c1 = 2 * h * c**2
c2 = (h * c) / k
denom = np.exp(c2 / (wavelength * temperature)) - 1.0
spectral_radiance = c1 / (wavelength**5 * (denom))
return spectral_radiance
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (wavelength, spectral radiance) arrays.
"""
wavelength = self.generate_x_data()
assert self.T is not None
y = self.func(wavelength, self.T)
return wavelength, y
register_signal_parameters_class(SignalTypes.PLANCK, PlanckParam)
class FreqUnits(enum.Enum):
"""Frequency units"""
HZ = "Hz"
KHZ = "kHz"
MHZ = "MHz"
GHZ = "GHz"
@classmethod
def convert_in_hz(cls, value, unit):
"""Convert value in Hz"""
factor = {cls.HZ: 1, cls.KHZ: 1e3, cls.MHZ: 1e6, cls.GHZ: 1e9}.get(unit)
if factor is None:
raise ValueError(f"Unknown unit: {unit}")
return value * factor
class BasePeriodicParam(NewSignalParam):
"""Parameters for periodic functions"""
STYPE: Type[SignalTypes] | None = None
def get_frequency_in_hz(self):
"""Return frequency in Hz"""
return FreqUnits.convert_in_hz(self.freq, self.freq_unit)
# Redefining some parameters with more appropriate defaults
xunit = gds.StringItem(_("X unit"), default="s")
a = gds.FloatItem("A", default=1.0)
offset = gds.FloatItem("y<sub>0</sub>", default=0.0).set_pos(col=1)
freq = gds.FloatItem("f", default=1.0)
freq_unit = gds.ChoiceItem(_("Unit"), FreqUnits, default=FreqUnits.HZ).set_pos(
col=1
)
phase = gds.FloatItem("φ", default=0.0, unit="°")
def generate_title(self) -> str:
"""Generate a title based on current parameters."""
assert isinstance(self.STYPE, SignalTypes)
freq_hz = self.get_frequency_in_hz()
title = (
f"{self.STYPE.name.lower()}(f={freq_hz:.3g}Hz,"
f"A={self.a:.3g},y0={self.offset:.3g},φ={self.phase:.3g}°)"
)
return title
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays
"""
x = self.generate_x_data()
func = {
SignalTypes.SINE: np.sin,
SignalTypes.COSINE: np.cos,
SignalTypes.SAWTOOTH: sps.sawtooth,
SignalTypes.TRIANGLE: triangle_func,
SignalTypes.SQUARE: sps.square,
SignalTypes.SINC: np.sinc,
}[self.STYPE]
freq = self.get_frequency_in_hz()
y = self.a * func(2 * np.pi * freq * x + np.deg2rad(self.phase)) + self.offset
return x, y
class SineParam(
BasePeriodicParam, title=_("Sine"), comment="y = y<sub>0</sub> + A sin(2π f x + φ)"
):
"""Parameters for sine function."""
STYPE = SignalTypes.SINE
register_signal_parameters_class(SignalTypes.SINE, SineParam)
class CosineParam(
BasePeriodicParam,
title=_("Cosine"),
comment="y = y<sub>0</sub> + A cos(2π f x + φ)",
):
"""Parameters for cosine function."""
STYPE = SignalTypes.COSINE
register_signal_parameters_class(SignalTypes.COSINE, CosineParam)
class SawtoothParam(
BasePeriodicParam,
title=_("Sawtooth"),
comment="y = y<sub>0</sub> + A (2 (f x + φ/(2π) - |f x + φ/(2π) + 1/2|))",
):
"""Parameters for sawtooth function."""
STYPE = SignalTypes.SAWTOOTH
register_signal_parameters_class(SignalTypes.SAWTOOTH, SawtoothParam)
class TriangleParam(
BasePeriodicParam,
title=_("Triangle"),
comment="y = y<sub>0</sub> + A sawtooth(2π f x + φ, width=0.5)",
):
"""Parameters for triangle function."""
STYPE = SignalTypes.TRIANGLE
register_signal_parameters_class(SignalTypes.TRIANGLE, TriangleParam)
class SquareParam(
BasePeriodicParam,
title=_("Square"),
comment="y = y<sub>0</sub> + A sgn(sin(2π f x + φ))",
):
"""Parameters for square function."""
STYPE = SignalTypes.SQUARE
register_signal_parameters_class(SignalTypes.SQUARE, SquareParam)
class SincParam(
BasePeriodicParam,
title=_("Cardinal sine"),
comment="y = y<sub>0</sub> + A sinc(f x + φ)",
):
"""Parameters for cardinal sine function."""
STYPE = SignalTypes.SINC
register_signal_parameters_class(SignalTypes.SINC, SincParam)
class LinearChirpParam(
NewSignalParam,
title=_("Linear chirp"),
comment="y = y<sub>0</sub> + a sin(φ<sub>0</sub> "
"+ 2π (f<sub>0</sub> x + 0.5 k x²))",
):
"""Linear chirp function."""
a = gds.FloatItem("A", default=1.0, help=_("Amplitude"))
phi0 = gds.FloatItem(
"φ<sub>0</sub>", default=0.0, help=_("Initial phase")
).set_prop("display", col=1)
k = gds.FloatItem("k", default=1.0, help=_("Chirp rate (f<sup>-2</sup>)"))
offset = gds.FloatItem(
"y<sub>0</sub>", default=0.0, help=_("Vertical offset")
).set_prop("display", col=1)
f0 = gds.FloatItem("f<sub>0</sub>", default=1.0, help=_("Initial frequency (Hz)"))
def generate_title(self) -> str:
"""Generate a title based on current parameters.
Returns:
Title string.
"""
return (
f"chirp(A={self.a:.3g},"
f"k={self.k:.3g},"
f"f0={self.f0:.3g},"
f"φ0={self.phi0:.3g},"
f"y0={self.offset:.3g})"
)
@classmethod
def func(
cls, x: np.ndarray, a: float, k: float, f0: float, phi0: float, offset: float
) -> np.ndarray:
"""Compute the linear chirp function.
Args:
x: X data array.
a: Amplitude.
k: Chirp rate (s<sup>-2</sup>).
f0: Initial frequency (Hz).
phi0: Initial phase.
offset: Vertical offset.
Returns:
Y data array computed using the chirp function.
"""
phase = phi0 + 2 * np.pi * (f0 * x + 0.5 * k * x**2)
return offset + a * np.sin(phase)
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays.
"""
assert self.a is not None
assert self.k is not None
assert self.f0 is not None
assert self.phi0 is not None
assert self.offset is not None
x = self.generate_x_data()
y = self.func(x, self.a, self.k, self.f0, self.phi0, self.offset)
return x, y
register_signal_parameters_class(SignalTypes.LINEARCHIRP, LinearChirpParam)
class StepParam(NewSignalParam, title=_("Step")):
"""Parameters for step function."""
a1 = gds.FloatItem("A<sub>1</sub>", default=0.0)
a2 = gds.FloatItem("A<sub>2</sub>", default=1.0).set_pos(col=1)
x0 = gds.FloatItem("x<sub>0</sub>", default=0.0)
def generate_title(self) -> str:
"""Generate a title based on current parameters."""
return f"step(a1={self.a1:.3g},a2={self.a2:.3g},x0={self.x0:.3g})"
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays
"""
x = self.generate_x_data()
y = np.ones_like(x) * self.a1
y[x > self.x0] = self.a2
return x, y
register_signal_parameters_class(SignalTypes.STEP, StepParam)
class ExponentialParam(
NewSignalParam, title=_("Exponential"), comment="y = A exp(B x) + y<sub>0</sub>"
):
"""Parameters for exponential function."""
a = gds.FloatItem("A", default=1.0)
offset = gds.FloatItem("y<sub>0</sub>", default=0.0)
exponent = gds.FloatItem("B", default=1.0)
def generate_title(self) -> str:
"""Generate a title based on current parameters."""
return f"exponential(A={self.a:.3g},B={self.exponent:.3g},y0={self.offset:.3g})"
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays
"""
x = self.generate_x_data()
y = self.a * np.exp(self.exponent * x) + self.offset
return x, y
register_signal_parameters_class(SignalTypes.EXPONENTIAL, ExponentialParam)
class LogisticParam(
NewSignalParam,
title=_("Logistic"),
comment="y = y<sub>0</sub> + A / (1 + exp(-k (x - x<sub>0</sub>)))",
):
"""Logistic function."""
a = gds.FloatItem("A", default=1.0, help=_("Amplitude"))
x0 = gds.FloatItem(
"x<sub>0</sub>", default=0.0, help=_("Horizontal offset")
).set_prop("display", col=1)
k = gds.FloatItem("k", default=1.0, help=_("Growth or decay rate"))
offset = gds.FloatItem(
"y<sub>0</sub>", default=0.0, help=_("Vertical offset")
).set_prop("display", col=1)
def generate_title(self) -> str:
"""Generate a title based on current parameters.
Returns:
Title string.
"""
return (
f"logistic(A={self.a:.3g},"
f"k={self.k:.3g},"
f"x0={self.x0:.3g},"
f"y0={self.offset:.3g})"
)
@classmethod
def func(
cls, x: np.ndarray, a: float, k: float, x0: float, offset: float
) -> np.ndarray:
"""Compute the logistic function.
Args:
x: X data array.
a: Amplitude.
k: Growth or decay rate.
x0: Horizontal offset.
offset: Vertical offset.
Returns:
Y data array computed using the logistic function.
"""
return offset + a / (1.0 + np.exp(-k * (x - x0)))
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays.
"""
assert self.a is not None
assert self.k is not None
assert self.x0 is not None
assert self.offset is not None
x = self.generate_x_data()
y = self.func(x, self.a, self.k, self.x0, self.offset)
return x, y
register_signal_parameters_class(SignalTypes.LOGISTIC, LogisticParam)
class PulseParam(NewSignalParam, title=_("Pulse")):
"""Parameters for pulse function."""
amp = gds.FloatItem("Amplitude", default=1.0)
start = gds.FloatItem(_("Start"), default=0.0).set_pos(col=1)
offset = gds.FloatItem(_("Offset"), default=10.0)
stop = gds.FloatItem(_("End"), default=5.0).set_pos(col=1)
def generate_title(self) -> str:
"""Generate a title based on current parameters."""
return (
f"pulse(start={self.start:.3g},stop={self.stop:.3g},"
f"offset={self.offset:.3g},amp={self.amp:.3g})"
)
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays
"""
x = self.generate_x_data()
y = np.full_like(x, self.offset)
y[(x >= self.start) & (x <= self.stop)] += self.amp
return x, y
register_signal_parameters_class(SignalTypes.PULSE, PulseParam)
@dataclass
class ExpectedFeatures:
"""Expected pulse feature values for validation."""
signal_shape: SignalShape
polarity: int
amplitude: float
rise_time: float # Rise time between specified ratios
offset: float
x50: float
x100: float # Time at 100% amplitude (maximum)
foot_duration: float
fall_time: float | None = None # Fall time between specified ratios
fwhm: float | None = None
@dataclass
class FeatureTolerances:
"""Absolute tolerance values for pulse feature validation."""
polarity: float = 1e-8
amplitude: float = 0.5
rise_time: float = 0.2
offset: float = 0.5
x50: float = 0.1
x100: float = 0.6 # Tolerance for time at 100% amplitude
foot_duration: float = 0.5
fall_time: float = 1.0
fwhm: float = 0.5
class BasePulseParam(NewSignalParam):
"""Base class for pulse signal parameters."""
SEED = 0
# Redefine NewSignalParam parameters with more appropriate defaults
xmin = gds.FloatItem(_("Start time"), default=0.0)
xmax = gds.FloatItem(_("End time"), default=10.0)
size = gds.IntItem(_("Number of points"), default=1000, min=1)
# Specific pulse parameters
offset = gds.FloatItem(_("Initial value"), default=0.0)
amplitude = gds.FloatItem(_("Amplitude"), default=5.0).set_pos(col=1)
noise_amplitude = gds.FloatItem(_("Noise amplitude"), default=0.2, min=0.0)
x_rise_start = gds.FloatItem(_("Rise start time"), default=3.0, min=0.0)
total_rise_time = gds.FloatItem(_("Total rise time"), default=2.0, min=0.0).set_pos(
col=1
)
def get_crossing_time(self, edge: Literal["rise", "fall"], ratio: float) -> float:
"""Get the theoretical crossing time for the specified edge and ratio.
Args:
edge: Which edge to calculate ("rise" or "fall")
ratio: Crossing ratio (0.0 to 1.0)
Returns:
Theoretical crossing time for the specified edge and ratio
"""
if edge == "rise":
return self.x_rise_start + ratio * self.total_rise_time
raise NotImplementedError(
"Fall edge crossing time not implemented for this signal type"
)
def get_expected_features(
self, start_ratio: float = 0.1, stop_ratio: float = 0.9
) -> ExpectedFeatures:
"""Calculate expected pulse features for this signal.
Args:
start_ratio: Start ratio for rise time calculation
stop_ratio: Stop ratio for rise time calculation
Returns:
ExpectedFeatures dataclass with all expected values
"""
y_end_value = self.offset + self.amplitude
return ExpectedFeatures(
signal_shape=SignalShape.STEP,
polarity=1 if y_end_value > self.offset else -1,
amplitude=abs(y_end_value - self.offset),
rise_time=(stop_ratio - start_ratio) * self.total_rise_time,
offset=self.offset,
x50=self.x_rise_start + 0.5 * self.total_rise_time,
x100=self.x_rise_start + self.total_rise_time,
foot_duration=self.x_rise_start - self.xmin,
)
def get_feature_tolerances(self) -> FeatureTolerances:
"""Get absolute tolerance values for pulse feature validation.
Returns:
FeatureTolerances dataclass with default tolerance values
"""
return FeatureTolerances()
class StepPulseParam(BasePulseParam, title=_("Step pulse with noise")):
"""Parameters for generating step signals with configurable rise time."""
def generate_title(self) -> str:
"""Generate a title based on current parameters."""
return (
f"step_pulse(rise_time={self.total_rise_time:.3g},"
f"x_start={self.x_rise_start:.3g},offset={self.offset:.3g},"
f"amp={self.amplitude:.3g})"
)
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Generate a noisy step signal with a linear rise.
The function creates a time vector and generates a signal that starts at
`offset`, rises linearly to `offset + amplitude` starting at `x_rise_start` over
a duration of `total_rise_time`, and remains at the final value afterwards.
Gaussian noise is added to the signal.
Returns:
Tuple containing the time vector and noisy step signal.
"""
# time vector
x = self.generate_x_data()
# Calculate final value from offset and amplitude
y_final = self.offset + self.amplitude
# creating the signal
rise_end_time = self.x_rise_start + self.total_rise_time
y = np.piecewise(
x,
[
x < self.x_rise_start,
(x >= self.x_rise_start) & (x < rise_end_time),
x >= rise_end_time,
],
[
self.offset,
lambda t: (
self.offset
+ (y_final - self.offset)
* (t - self.x_rise_start)
/ self.total_rise_time
),
y_final,
],
)
rdg = np.random.default_rng(self.SEED)
noise = rdg.normal(0, self.noise_amplitude, size=len(y))
y_noisy = y + noise
return x, y_noisy
register_signal_parameters_class(SignalTypes.STEP_PULSE, StepPulseParam)
class SquarePulseParam(BasePulseParam, title=_("Square pulse with noise")):
"""Parameters for generating square signals with configurable rise/fall times."""
# Redefine NewSignalParam parameters with more appropriate defaults
xmax = gds.FloatItem(_("End time"), default=20.0)
# Specific square pulse parameters
fwhm = gds.FloatItem(_("Full Width at Half Maximum"), default=5.5, min=0.0)
total_fall_time = gds.FloatItem(_("Total fall time"), default=5.0, min=0.0).set_pos(
col=1
)
@property
def square_duration(self) -> float:
"""Calculate the square duration from FWHM and total rise/fall times."""
return self.fwhm - 0.5 * self.total_rise_time - 0.5 * self.total_fall_time
def get_plateau_range(self) -> tuple[float, float]:
"""Get the theoretical plateau range (start, end) for the square signal.
Returns:
Tuple with (start, end) times of the plateau
"""
return (
self.x_rise_start + self.total_rise_time,
self.x_rise_start + self.total_rise_time + self.square_duration,
)
def get_crossing_time(self, edge: Literal["rise", "fall"], ratio: float) -> float:
"""Get the theoretical crossing time for the specified edge and ratio.
Args:
edge: Which edge to calculate ("rise" or "fall")
ratio: Crossing ratio (0.0 to 1.0)
Returns:
Theoretical crossing time for the specified edge and ratio
"""
if edge == "rise":
return super().get_crossing_time(edge, ratio)
if edge == "fall":
t_start_fall = (
self.x_rise_start + self.total_rise_time + self.square_duration
)
return t_start_fall + ratio * self.total_fall_time
raise ValueError("edge must be 'rise' or 'fall'")
def get_expected_features(
self, start_ratio: float = 0.1, stop_ratio: float = 0.9
) -> ExpectedFeatures:
"""Calculate expected pulse features for this signal.
Args:
start_ratio: Start ratio for rise time calculation
stop_ratio: Stop ratio for rise time calculation
Returns:
ExpectedFeatures dataclass with all expected values
"""
features = super().get_expected_features(start_ratio, stop_ratio)
features.signal_shape = SignalShape.SQUARE
features.fall_time = np.abs(stop_ratio - start_ratio) * self.total_fall_time
features.fwhm = self.fwhm
return features
def get_feature_tolerances(self) -> FeatureTolerances:
"""Get absolute tolerance values for square signal feature validation.
Returns:
FeatureTolerances dataclass with square-specific tolerance values
"""
return FeatureTolerances(
x100=0.8, # Looser tolerance for square signals
)
def generate_title(self) -> str:
"""Generate a title based on current parameters."""
return (
f"square_pulse(rise_time={self.total_rise_time:.3g},"
f"fall_time={self.total_fall_time:.3g},"
f"fwhm={self.fwhm:.3g},offset={self.offset:.3g},"
f"amp={self.amplitude:.3g})"
)
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Generate a synthetic square-like signal with configurable parameters.
Generates a synthetic square-like signal with configurable rise, plateau,
and fall times, and adds Gaussian noise.
Returns:
Tuple containing the time vector and noisy square signal.
"""
# time vector
x = self.generate_x_data()
# Calculate high value from offset and amplitude
y_high = self.offset + self.amplitude
x_rise_end = self.x_rise_start + self.total_rise_time
x_start_fall = self.x_rise_start + self.total_rise_time + self.square_duration
# creating the signal
y = np.piecewise(
x,
[
x < self.x_rise_start,
(x >= self.x_rise_start) & (x < x_rise_end),
(x >= x_rise_end) & (x < x_start_fall),
(x >= x_start_fall) & (x < x_start_fall + self.total_fall_time),
x >= self.total_fall_time + x_start_fall,
],
[
self.offset,
lambda t: (
self.offset
+ (y_high - self.offset)
* (t - self.x_rise_start)
/ self.total_rise_time
),
y_high,
lambda t: y_high
- (y_high - self.offset) * (t - x_start_fall) / self.total_fall_time,
self.offset,
],
)
rdg = np.random.default_rng(self.SEED)
noise = rdg.normal(0, self.noise_amplitude, size=len(y))
y_noisy = y + noise
return x, y_noisy
register_signal_parameters_class(SignalTypes.SQUARE_PULSE, SquarePulseParam)
class PolyParam(NewSignalParam, title=_("Polynomial")):
"""Parameters for polynomial function."""
a0 = gds.FloatItem("a0", default=1.0)
a3 = gds.FloatItem("a3", default=0.0).set_pos(col=1)
a1 = gds.FloatItem("a1", default=1.0)
a4 = gds.FloatItem("a4", default=0.0).set_pos(col=1)
a2 = gds.FloatItem("a2", default=0.0)
a5 = gds.FloatItem("a5", default=0.0).set_pos(col=1)
def generate_title(self) -> str:
"""Generate a title based on current parameters."""
coeffs = [self.a0, self.a1, self.a2, self.a3, self.a4, self.a5]
terms = []
for i, coeff in enumerate(coeffs):
if coeff == 0:
continue
# Format coefficient
if i == 0:
# Constant term
terms.append(f"{coeff:.3g}")
elif i == 1:
# Linear term
if coeff == 1:
terms.append("x")
elif coeff == -1:
terms.append("-x")
else:
terms.append(f"{coeff:.3g}x")
else:
# Higher order terms
if coeff == 1:
terms.append(f"x^{i}")
elif coeff == -1:
terms.append(f"-x^{i}")
else:
terms.append(f"{coeff:.3g}x^{i}")
if not terms:
return "0"
# Join terms with + or - signs
result = terms[0]
for term in terms[1:]:
if term.startswith("-"):
result += term
else:
result += f"+{term}"
return result
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays
"""
x = self.generate_x_data()
y = np.polyval([self.a5, self.a4, self.a3, self.a2, self.a1, self.a0], x)
return x, y
register_signal_parameters_class(SignalTypes.POLYNOMIAL, PolyParam)
class CustomSignalParam(NewSignalParam, title=_("Custom signal")):
"""Parameters for custom signal (e.g. manually defined experimental data)."""
size = gds.IntItem(_("N<sub>points</sub>"), default=10).set_prop(
"display", active=False
)
xmin = gds.FloatItem("x<sub>min</sub>", default=0.0).set_prop(
"display", active=False
)
xmax = gds.FloatItem("x<sub>max</sub>", default=1.0).set_prop(
"display", active=False, col=1
)
xyarray = gds.FloatArrayItem(
"XY Values",
format="%g",
)
def setup_array(
self,
size: int | None = None,
xmin: float | None = None,
xmax: float | None = None,
) -> None:
"""Setup the xyarray from size, xmin and xmax (use the current values is not
provided)
Args:
size: xyarray size (default: None)
xmin: X min (default: None)
xmax: X max (default: None)
"""
self.size = size or self.size
self.xmin = xmin or self.xmin
self.xmax = xmax or self.xmax
x_arr = np.linspace(self.xmin, self.xmax, self.size) # type: ignore
self.xyarray = np.vstack((x_arr, x_arr)).T
def generate_title(self) -> str:
"""Generate a title based on current parameters."""
return f"custom(size={self.size})"
def generate_1d_data(self) -> tuple[np.ndarray, np.ndarray]:
"""Compute 1D data based on current parameters.
Returns:
Tuple of (x, y) arrays
"""
self.setup_array(size=self.size, xmin=self.xmin, xmax=self.xmax)
x, y = self.xyarray.T
return x, y
register_signal_parameters_class(SignalTypes.CUSTOM, CustomSignalParam)
check_all_signal_parameters_classes()
def triangle_func(xarr: np.ndarray) -> np.ndarray:
"""Triangle function
Args:
xarr: x data
"""
# ignore warning, as type hint is not handled properly in upstream library
return sps.sawtooth(xarr, width=0.5) # type: ignore[no-untyped-def]
SIG_NB = 0
def get_next_signal_number() -> int:
"""Get the next signal number.
This function is used to keep track of the number of signals created.
It is typically used to generate unique titles for new signals.
Returns:
int: new signal number
"""
global SIG_NB # pylint: disable=global-statement
SIG_NB += 1
return SIG_NB
def create_signal_from_param(param: NewSignalParam) -> SignalObj:
"""Create a new Signal object from parameters.
Args:
param: new signal parameters
Returns:
Signal object
Raises:
NotImplementedError: if the signal type is not supported
"""
# Generate data first, as some `generate_title()` methods may depend on it:
x, y = param.generate_1d_data()
# Check if user has customized the title or left it as default/empty
use_generated_title = not param.title or param.title == DEFAULT_TITLE
if use_generated_title:
# Try to generate a descriptive title
gen_title = getattr(param, "generate_title", lambda: "")()
if gen_title:
title = gen_title
else:
# No generated title available, use default with number
title = f"{DEFAULT_TITLE} {get_next_signal_number():d}"
else:
# User has set a custom title, use it as-is
title = param.title
signal = create_signal(
title,
x,
y,
units=(param.xunit, param.yunit),
labels=(param.xlabel, param.ylabel),
)
return signal
|