forked from AmbaPant/mantid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Bessel.py
31 lines (23 loc) · 1.01 KB
/
Bessel.py
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
# Mantid Repository : https://github.com/mantidproject/mantid
#
# Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
# NScD Oak Ridge National Laboratory, European Spallation Source,
# Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
# SPDX - License - Identifier: GPL - 3.0 +
# pylint: disable=invalid-name, anomalous-backslash-in-string, attribute-defined-outside-init
from mantid.api import IFunction1D, FunctionFactory
import numpy as np
from scipy import special as sp
class Bessel(IFunction1D):
def category(self):
return "Muon\\MuonSpecific"
def init(self):
self.declareParameter("A0", 1, 'Amplitude')
self.declareParameter("Phi", 0.1, 'Phase(rad)')
self.declareParameter("Nu", 0.1, 'Frequency(MHz)')
def function1D(self, x):
A0 = self.getParameterValue("A0")
Phi = self.getParameterValue("Phi")
Nu = self.getParameterValue("Nu")
return A0 * sp.j0(2 * np.pi * Nu * x + Phi)
FunctionFactory.subscribe(Bessel)