1
0
mirror of https://github.com/TREX-CoE/fparser.git synced 2024-08-25 06:31:44 +02:00
fparser/src/iochamp.f90

432 lines
12 KiB
Fortran
Raw Normal View History

!
! Shows FDF capabilities..
!
PROGRAM iochamp
USE fdf
USE prec
2021-02-23 10:43:38 +01:00
USE parse
2021-02-23 22:44:22 +01:00
use io_fdf
implicit none
!--------------------------------------------------------------- Local Variables
integer, parameter :: maxa = 100
logical :: doit, debug, check, val, logic(10)
logical :: beginning, ending
character(len=72) :: fname, axis, status, filename, title
character(len=72) :: molecule_name, key, comment
character(2) :: symbol(maxa)
character(len=20) :: chunks(10), subblock(10)
2021-02-23 10:43:38 +01:00
character(len=30) :: keyword(5)
integer(sp) :: i, j, ia, na, external_entry, number_of_atoms, ind
integer(sp) :: isa(maxa)
real(dp) :: coeff(maxa)
real(sp) :: wmix
real(dp) :: cutoff, phonon_energy, factor
real(dp) :: xa(3, maxa)
real(dp) :: listr(maxa)
type(block_fdf) :: bfdf, bfdf2
type(parsed_line), pointer :: pline, pline2
2021-02-10 00:29:00 +01:00
!type(fdf_file) :: fdffile
2021-02-23 10:43:38 +01:00
integer :: nextorb, nblk_max, nopt_iter, max_iteration, max_iter, linecount, argument(5)
real(dp) :: energy_tol, float_value
real(dp) :: sr_tau, sr_eps, sr_adiag
character(len=20) :: real_format = '(A, T20, F14.5)'
character(len=20) :: int_format = '(A, T20, I8)'
2021-02-23 22:44:22 +01:00
! for determinants sections
integer :: nelectrons, nalpha, nbeta, ndeterminants, nexcitation, iostat
integer, allocatable :: det_alpha(:), det_beta(:)
real(dp), allocatable :: det_coeff(:)
character(len=20) :: temp1, temp2, temp3, temp4, temp5
!------------------------------------------------------------------------- BEGIN
! Initialize
call fdf_init('test-champ.inp', 'test-champ.out')
! Handle/Use fdf structure
if (fdf_defined('new-style')) write(6,*) 'New-style stuff'
! strings/characters
fname = fdf_string('title', 'Default title')
write(6,'(A)') 'title of the calculation :: ', fname
2021-02-23 10:43:38 +01:00
!Integer numbers (keyword, default_value). The variable is assigned default_value when keyword is not present
nextorb = fdf_integer('nextorb', 0)
write(6,fmt=int_format) 'Next Orb =', nextorb
nblk_max = fdf_integer('nblk_max', 0)
write(6,fmt=int_format) 'nblk max =', nblk_max
nopt_iter = fdf_integer('nopt_iter', 0)
write(6,fmt=int_format) 'nopt_iter =', nopt_iter
! floats (keyword, default_value) variable is assigned default_value when keyword is not present
sr_tau = fdf_get('sr_tau', 0.025d0)
write(6,fmt=real_format) 'sr_tau:', sr_tau
sr_eps = fdf_get('sr_eps', 0.001d0)
write(6,fmt=real_format) 'sr_eps:', sr_eps
sr_adiag = fdf_get('sr_adiag', 0.01d0)
write(6,fmt=real_format) 'sr_adiag:', sr_adiag
energy_tol = fdf_get('energy_tol', 0.00001d0)
write(6,fmt=real_format) 'energy_tol:', energy_tol
2021-02-23 10:43:38 +01:00
nopt_iter = fdf_integer('a', 0)
write(6,fmt=int_format) 'a =', nopt_iter
nopt_iter = fdf_integer('b', 0)
write(6,fmt=int_format) 'b =', nopt_iter
! logical :: true, .true., yes, T, and TRUE are equivalent
debug = fdf_boolean('Debug', .TRUE.)
write(6,'(A, L2)') 'Debug:', debug
! mixed types in one line (for example, reading a number with units)
max_iter = fdf_integer('max_iteration', 100)
write(6,*) 'Examples: maximum_iter =', max_iter
float_value = fdf_get('float_value', 0.00001d0)
write(6,*) 'float_value :: ', float_value
cutoff = fdf_physical('Energy_Cutoff', 8.d0, 'Ry')
write(6,fmt=real_format) 'Energy CutOff in Rydberg :: ', cutoff
phonon_energy = fdf_physical('phonon-energy', 0.01d0, 'eV')
write(6,fmt=real_format) 'Phonon Energy in eV :: ', phonon_energy
write(6,'(A)')
write(6,*) '------------------------------------------------------'
2021-02-23 10:43:38 +01:00
! block containing logical key-value pairs
doit = fdf_boolean("optimize_wavefunction", .True.)
write(6,*) ' optimize_wavefunction = ', doit
doit = fdf_boolean('optimize_ci', .True.)
write(6,*) ' optimize_ci = ', doit
doit = fdf_boolean('optimize_jastrow', .True.)
write(6,*) ' optimize_jastrow = ', doit
doit = fdf_boolean('optimize_orbitals', .True.)
write(6,*) ' optimize_orbitals = ', doit
write(6,'(A)')
write(6,*) '------------------------------------------------------'
! write(6,'(A,4X)') 'optimize_wavefunction using bline', (subblock(i), i = 1, 4)
if (fdf_block('general', bfdf)) then
write(*,*) "inside general block"
i = 1
do while(fdf_bline(bfdf, pline))
doit = fdf_bsearch(pline, "pool")
write(*,*) "pool found", doit
i = i + 1
enddo
endif
write(6,'(A)')
write(6,*) '------------------------------------------------------'
if (fdf_block('molecule', bfdf)) then
! External file reading
write(6,*) 'beginning of external file coordinates block '
ia = 1
! write(*,*) "linecount", fdf_block_linecount("molecule")
do while((fdf_bline(bfdf, pline)))
if (pline%ntokens == 1) then
number_of_atoms = fdf_bintegers(pline, 1)
write(*,*) "number of atoms", number_of_atoms
endif
na = number_of_atoms
2021-02-18 23:21:04 +01:00
if (pline%ntokens == 4) then
symbol(ia) = fdf_bnames(pline, 1)
do i= 1, 3
2021-02-18 22:38:59 +01:00
xa(i,ia) = fdf_bvalues(pline, i)
enddo
ia = ia + 1
endif
enddo
endif
write(6,*) 'Coordinates from Molecule block: External file'
do ia= 1, na
write(6,'(A4,3F10.6)') symbol(ia), (xa(i,ia),i=1,3)
enddo
2021-02-10 00:29:00 +01:00
write(6,'(A)')
write(6,*) '------------------------------------------------------'
2021-02-10 00:29:00 +01:00
! Molecule coordinate block begins here
if (fdf_block('Coordinates', bfdf)) then
ia = 1
do while(fdf_bline(bfdf, pline))
symbol(ia) = fdf_bnames(pline, 1)
do i= 1, 3
2021-02-18 22:38:59 +01:00
xa(i,ia) = fdf_bvalues(pline, i)
2021-02-10 00:29:00 +01:00
enddo
ia = ia + 1
enddo
na = ia - 1
endif
write(6,*) 'Coordinates:'
2021-02-10 00:29:00 +01:00
do ia = 1, na
write(6,'(A, 4x, 3F10.6)') symbol(ia), (xa(i,ia),i=1,3)
enddo
2021-02-10 00:29:00 +01:00
! Molecule coordinate block ends here
write(6,*) '------------------------------------------------------'
write(6,'(A)')
2021-02-10 00:29:00 +01:00
write(6,*) '------------------------------------------------------'
if (fdf_block('inline_xyz', bfdf)) then
! Forward reading
write(6,*) 'Reading an inline_xyz block '
ia = 1
2021-02-18 23:21:04 +01:00
do while((fdf_bline(bfdf, pline)))
2021-02-18 23:21:04 +01:00
if (pline%ntokens == 1) then
number_of_atoms = fdf_bintegers(pline, 1)
write(*,*) "Number of atoms", number_of_atoms
endif
na = number_of_atoms
if (pline%ntokens == 4) then
symbol(ia) = fdf_bnames(pline, 1)
do i= 1, 3
2021-02-18 22:38:59 +01:00
xa(i,ia) = fdf_bvalues(pline, i)
enddo
ia = ia + 1
endif
enddo
write(6,*) 'Inline XYZ Coordinates block:'
do ia= 1, na
write(6,'(A4,3F10.6)') symbol(ia), (xa(i,ia),i=1,3)
enddo
endif
2021-02-19 00:33:15 +01:00
write(6,'(A)')
write(6,*) '------------------------------------------------------'
2021-02-18 22:38:59 +01:00
if (fdf_block('inline_xyz2', bfdf)) then
! Forward reading
2021-02-19 00:33:15 +01:00
write(6,*) 'Reading an inline_xyz2 block '
2021-02-18 22:38:59 +01:00
ia = 1
2021-02-19 00:33:15 +01:00
do while(fdf_bline(bfdf, pline))
2021-02-18 22:38:59 +01:00
if (pline%ntokens == 1) then
number_of_atoms = fdf_bintegers(pline, 1)
write(*,*) "Number of atoms", number_of_atoms
endif
na = number_of_atoms
2021-02-18 23:21:04 +01:00
2021-02-18 22:38:59 +01:00
if (pline%ntokens == 4) then
symbol(ia) = fdf_bnames(pline, 1)
do i= 1, 3
xa(i,ia) = fdf_bvalues(pline, i)
enddo
ia = ia + 1
endif
enddo
2021-02-19 00:33:15 +01:00
write(6,*) 'Inline XYZ2 Coordinates block:'
2021-02-18 22:38:59 +01:00
do ia= 1, na
write(6,'(A4,3F10.6)') symbol(ia), (xa(i,ia),i=1,3)
enddo
endif
write(6,'(A)')
write(6,*) '------------------------------------------------------'
2021-02-18 22:38:59 +01:00
2021-02-23 22:44:22 +01:00
if (fdf_block('molecule2', bfdf)) then
! External file reading
write(6,*) 'beginning of external file coordinates block '
ia = 1
! write(*,*) "linecount", fdf_block_linecount("molecule")
do while((fdf_bline(bfdf, pline)))
if (pline%ntokens == 1) then
number_of_atoms = fdf_bintegers(pline, 1)
write(*,*) "number of atoms", number_of_atoms
endif
na = number_of_atoms
if (pline%ntokens == 4) then
symbol(ia) = fdf_bnames(pline, 1)
do i= 1, 3
xa(i,ia) = fdf_bvalues(pline, i)
enddo
ia = ia + 1
endif
enddo
endif
write(6,*) 'Coordinates from Molecule2 block: External file'
do ia= 1, na
write(6,'(A4,3F10.6)') symbol(ia), (xa(i,ia),i=1,3)
enddo
write(6,'(A)')
write(6,*) '------------------------------------------------------'
if ( fdf_block('ListBlock',bfdf) ) then
i = 0
do while ( fdf_bline(bfdf,pline) )
i = i + 1
na = fdf_bnlists(pline)
write(*,'(2(a,i0),a)') 'Listblock line: ',i,' has ',na,' lists'
do ia = 1 , na
j = -1
call fdf_bilists(pline,ia,j,isa)
write(*,'(tr5,2(a,i0),a)') 'list ',ia,' has ',j,' entries'
call fdf_bilists(pline,ia,j,isa)
write(*,'(tr5,a,1000(tr1,i0))') 'list: ',isa(1:j)
end do
end do
end if
if ( fdf_islreal('list_floats') .and. fdf_islist('list_floats') &
.and. (.not. fdf_islinteger('list_floats')) ) then
na = -1
call fdf_list('list_floats',na,listr)
write(*,'(tr1,a,i0,a)') 'list_floats has ',na,' entries'
if ( na < 2 ) stop 1
call fdf_list('list_floats',na,listr)
write(*,'(tr5,a,1000(tr1,f12.8))') 'list_floats: ',listr(1:na)
else
write(*,*)'list_floats was not recognized'
stop 1
end if
2021-02-23 22:44:22 +01:00
write(6,'(A)')
write(6,*) '------------------------------------------------------'
write(6,'(A)') " Determinants Block"
write(6,*) '------------------------------------------------------'
if (fdf_block('determinants', bfdf)) then
! External file reading
write(6,*) 'beginning of external file determinant block '
ia = 1
! call io_status()
! call fdf_printfdf()
print*, "printing label ", bfdf%label
print*, "pline obtained", (fdf_bline(bfdf, pline))
open (unit=11,file='TZ_1M_500.det', iostat=iostat, action='read' )
read(11,*) temp1, temp2, nelectrons, temp3, nalpha
! write(*,'(a,1x,i3,1x,i3)') "write after read1", nelectrons, nalpha
read(11,*) temp1, ndeterminants, nexcitation
! write(*,'(a,1x,i3, 1x, i3)') "write after read2", ndeterminants, nexcitation
read(11,*) (det_coeff(i), i=1,ndeterminants)
write(*,'(<ndeterminants>(f11.8,1x))') (det_coeff(i), i=1,ndeterminants)
! write(*,'(<ndeterminants>(f10.8, 1x))') (det_coeff(i), i=1,ndeterminants)
close(11)
if(fdf_bsearch(pline, "&electrons")) then
nelectrons = integers(pline, 1)
nalpha = integers(pline, 2)
nbeta = nelectrons - nalpha
write(*,*) "total number of electrons ", nelectrons
write(*,*) " number of alpha electrons ", nalpha
write(*,*) " number of beta electrons ", nalpha
if (.not. allocated(det_alpha)) allocate(det_alpha(nalpha))
if (.not. allocated(det_beta)) allocate(det_beta(nbeta))
endif
if(fdf_bsearch(pline, "determinants")) then
ndeterminants = fdf_bintegers(pline, 1)
nexcitation = fdf_bintegers(pline, 2)
write(*,*) "total number of determinants ", ndeterminants
write(*,*) " number of excitations ", nexcitation
if (.not. allocated(det_coeff)) allocate(det_coeff(ndeterminants))
endif
na = nintegers(pline)
write(*,'(2(a,i0),a)') 'number of integers: ', na, ' integers'
write(*,'(tr5,a,<nalpha>(tr1,i0))') 'list: ', det_alpha(1:nalpha)
! endif
! enddo
endif
! write(6,*) 'Coordinates from Molecule block: External file'
! do ia= 1, na
! write(6,'(A4,3F10.6)') symbol(ia), (xa(i,ia),i=1,3)
! enddo
write(6,'(A)')
write(6,*) '------------------------------------------------------'
call fdf_shutdown()
!----------------------------------------------------------------------------END
END PROGRAM iochamp