1 |
tim |
378 |
subroutine newLJtype(c_ident, sigma, epsilon, soft_pot, status) |
2 |
gezelter |
264 |
use lj, ONLY : module_newLJtype => newLJtype |
3 |
|
|
integer, parameter :: DP = selected_real_kind(15) |
4 |
|
|
integer,intent(inout) :: c_ident |
5 |
|
|
real(kind=dp),intent(inout) :: sigma |
6 |
|
|
real(kind=dp),intent(inout) :: epsilon |
7 |
tim |
378 |
integer,intent(inout) :: soft_pot |
8 |
gezelter |
264 |
integer,intent(inout) :: status |
9 |
gezelter |
507 |
|
10 |
tim |
378 |
call module_newLJtype(c_ident, sigma, epsilon, soft_pot, status) |
11 |
gezelter |
507 |
|
12 |
gezelter |
264 |
end subroutine newLJtype |
13 |
|
|
|
14 |
chuckv |
492 |
subroutine destroyLJTypes() |
15 |
gezelter |
507 |
use lj, ONLY: module_destroyLJTypes => destroyLJTypes |
16 |
chuckv |
492 |
|
17 |
gezelter |
507 |
call module_destroyLJTypes() |
18 |
chuckv |
492 |
|
19 |
|
|
end subroutine destroyLJTypes |