mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-28 22:25:48 -04:00
Complete first skeleton
This commit is contained in:
parent
e74b2e5920
commit
30f0c73eed
7 changed files with 46 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
|||
OBJ = bsemol.o bse_input.o
|
||||
OBJ = bsemol.o bse_input.o bse_init.o bse_analytic.o \
|
||||
bse_davidson.o bse_lanczos.o bse_defaults.o
|
||||
|
||||
USES_BLAS =
|
||||
OBJ_OPTIMIZE =
|
||||
|
|
|
|||
9
src/bsemol/bse_analytic.F
Normal file
9
src/bsemol/bse_analytic.F
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
subroutine bse_analytic(pars)
|
||||
|
||||
implicit none
|
||||
|
||||
#include "bse.fh"
|
||||
|
||||
type(bse_params_t) :: pars
|
||||
|
||||
end subroutine bse_analytic
|
||||
9
src/bsemol/bse_davidson.F
Normal file
9
src/bsemol/bse_davidson.F
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
subroutine bse_davidson(pars)
|
||||
|
||||
implicit none
|
||||
|
||||
#include "bse.fh"
|
||||
|
||||
type(bse_params_t) :: pars
|
||||
|
||||
end subroutine bse_davidson
|
||||
6
src/bsemol/bse_defaults.F
Normal file
6
src/bsemol/bse_defaults.F
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
subroutine bse_defaults(rtdb)
|
||||
implicit none
|
||||
|
||||
integer rtdb
|
||||
|
||||
end subroutine bse_defaults
|
||||
9
src/bsemol/bse_init.F
Normal file
9
src/bsemol/bse_init.F
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
subroutine bse_init(pars)
|
||||
|
||||
implicit none
|
||||
|
||||
#include "bse.fh"
|
||||
|
||||
type(bse_params_t) :: pars
|
||||
|
||||
end subroutine bse_init
|
||||
9
src/bsemol/bse_lanczos.F
Normal file
9
src/bsemol/bse_lanczos.F
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
subroutine bse_lanczos(pars)
|
||||
|
||||
implicit none
|
||||
|
||||
#include "bse.fh"
|
||||
|
||||
type(bse_params_t) :: pars
|
||||
|
||||
end subroutine bse_lanczos
|
||||
|
|
@ -55,6 +55,8 @@ c
|
|||
|
||||
if (params%davidson) then
|
||||
call bse_davidson(params)
|
||||
elseif (params%lanczos) then
|
||||
call bse_lanczos(params)
|
||||
else
|
||||
call bse_analytic(params)
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue