1 # -*- coding: iso-8859-1 -*-
4 from hoomd_script
import *
9 class pair_slj_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 lj
= pair
.slj(r_cut
=3.0, d_max
=2.0);
19 lj
.pair_coeff
.set('A', 'A', epsilon
=1.0, sigma
=1.0, r_cut
=2.5);
22 # test missing coefficients
23 def test_set_missing_epsilon(self
):
24 lj
= pair
.slj(r_cut
=3.0, d_max
=2.0);
25 lj
.pair_coeff
.set('A', 'A', sigma
=1.0);
26 self
.assertRaises(RuntimeError, lj
.update_coeffs
);
28 # test missing coefficients
29 def test_missing_AA(self
):
30 lj
= pair
.slj(r_cut
=3.0, d_max
=2.0);
31 self
.assertRaises(RuntimeError, lj
.update_coeffs
);
34 def test_set_params(self
):
35 lj
= pair
.slj(r_cut
=3.0, d_max
=2.0);
36 lj
.set_params(mode
="no_shift");
37 lj
.set_params(mode
="shift");
38 self
.assertRaises(RuntimeError, lj
.set_params
, mode
="xplor");
39 self
.assertRaises(RuntimeError, lj
.set_params
, mode
="blah");
41 # test default coefficients
42 def test_default_coeff(self
):
43 lj
= pair
.slj(r_cut
=3.0, d_max
=2.0);
44 # (r_cut, and r_on are default)
45 lj
.pair_coeff
.set('A', 'A', sigma
=1.0, epsilon
=1.0)
48 # test nlist subscribe
49 def test_nlist_subscribe(self
):
50 lj
= pair
.slj(r_cut
=2.5, d_max
=2.0);
51 lj
.pair_coeff
.set('A', 'A', simga
=1.0, epsilon
=1.0)
52 globals.neighbor_list
.update_rcut();
53 self
.assertAlmostEqual(2.5, globals.neighbor_list
.r_cut
);
55 lj
.pair_coeff
.set('A', 'A', r_cut
= 2.0)
56 globals.neighbor_list
.update_rcut();
57 self
.assertAlmostEqual(2.0, globals.neighbor_list
.r_cut
);
63 if __name__
== '__main__':
64 unittest
.main(argv
= ['test.py', '-v'])