1 # -*- coding: iso-8859-1 -*-
4 from hoomd_script
import *
9 class pair_yukawa_tests (unittest
.TestCase
):
12 init
.create_random(N
=100, phi_p
=0.05);
14 sorter
.set_params(grid
=8)
16 # basic test of creation
18 yuk
= pair
.yukawa(r_cut
=3.0);
19 yuk
.pair_coeff
.set('A', 'A', epsilon
=1.0, kappa
=1.0);
22 # test missing coefficients
23 def test_set_missing_epsilon(self
):
24 yuk
= pair
.yukawa(r_cut
=3.0);
25 yuk
.pair_coeff
.set('A', 'A', kappa
=1.0);
26 self
.assertRaises(RuntimeError, yuk
.update_coeffs
);
28 # test missing coefficients
29 def test_missing_AA(self
):
30 yuk
= pair
.yukawa(r_cut
=3.0);
31 self
.assertRaises(RuntimeError, yuk
.update_coeffs
);
34 def test_set_params(self
):
35 yuk
= pair
.yukawa(r_cut
=3.0);
36 yuk
.set_params(mode
="no_shift");
37 yuk
.set_params(mode
="shift");
38 yuk
.set_params(mode
="xplor");
39 self
.assertRaises(RuntimeError, yuk
.set_params
, mode
="blah");
41 # test nlist subscribe
42 def test_nlist_subscribe(self
):
43 yuk
= pair
.yukawa(r_cut
=2.5);
44 yuk
.pair_coeff
.set('A', 'A', epsilon
=1.0, kappa
=1.0)
45 globals.neighbor_list
.update_rcut();
46 self
.assertAlmostEqual(2.5, globals.neighbor_list
.r_cut
);
48 yuk
.pair_coeff
.set('A', 'A', r_cut
= 2.0)
49 globals.neighbor_list
.update_rcut();
50 self
.assertAlmostEqual(2.0, globals.neighbor_list
.r_cut
);
56 if __name__
== '__main__':
57 unittest
.main(argv
= ['test.py', '-v'])