Commit e843fbfb authored by Zolnierczuk, Piotr's avatar Zolnierczuk, Piotr
Browse files

missing files

parent d0b1be6b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -62,6 +62,7 @@ setup(
        #'scripts/get_proposal.py',
      ],
      install_requires = ['numpy', 'scipy', 'matplotlib', 'pandas', 'h5py' , 'qtconsole'],
      #also requires 'sphinx', 'pytest', 'pylint' 
      license = 'BSD 3-Clause License',
      classifiers=[
        "Development Status :: 3 - Alpha",
+94.4 MiB

File added.

No diff preview for this file type.

+29.3 MiB

File added.

No diff preview for this file type.

+4.69 MiB

File added.

No diff preview for this file type.

+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ class NeutronScatteringTestCase(unittest.TestCase):
            self.assertAlmostEqual(1.0, f_debye(x), 5, f"f_Debye for x={x}")

        #
        I0 = integ.quad(f_debye, 0, np.infty)
        I0 = integ.quad(f_debye, 0, np.inf)
        self.assertAlmostEqual(4/3*sqrt(pi), I0[0], 5, "f_debye integral (value)")
        self.assertAlmostEqual(0           , I0[1], 5, "f_debye integral (error)")