30 lines
541 B
Python
30 lines
541 B
Python
|
import unittest
|
||
|
import qpms
|
||
|
import numpy as np
|
||
|
|
||
|
# Some constants go here.
|
||
|
maxx = 20 # The maximum argument of the Bessel's functions, i.e. maximum wave number times the distance
|
||
|
lMax = 25 # To which order we decompose the waves
|
||
|
|
||
|
|
||
|
class PlaneWaveDecompositionTests(unittest.TestCase):
|
||
|
|
||
|
def testRandomInc(self):
|
||
|
pass
|
||
|
|
||
|
def testCornerCases(self):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class SphericalWaveTranslationTests(unittest.TestCase):
|
||
|
|
||
|
def sometest(self):
|
||
|
pass
|
||
|
|
||
|
def main():
|
||
|
unittest.main()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|
||
|
|