Revision: | 185 |
Committed: | Fri Nov 22 20:39:33 2002 UTC (22 years, 5 months ago) by chuckv |
File size: | 394 byte(s) |
Log Message: | Initial commit of wrappers for fortran module proceedures. |
# | Content |
---|---|
1 | module simulation |
2 | use definitions, ONLY :dp |
3 | implicit none |
4 | PRIVATE |
5 | |
6 | |
7 | |
8 | real ( kind = dp ), dimension(3) :: box |
9 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | contains |
17 | |
18 | |
19 | subroutine set_simulation(box,rlist,rcut) |
20 | |
21 | |
22 | |
23 | end subroutine set_simulation |
24 | |
25 | |
26 | |
27 | subroutine change_box_size(new_box_size) |
28 | real(kind=dp), dimension(3) :: new_box_size |
29 | |
30 | box = new_box_size |
31 | |
32 | end subroutine change_box_size |
33 | |
34 | |
35 | end module simulation |