quantum-espresso/PW/pw_restart.f90

2001 lines
62 KiB
Fortran

!
! Copyright (C) 2005 Quantum-ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
#include "f_defs.h"
!
!----------------------------------------------------------------------------
MODULE pw_restart
!----------------------------------------------------------------------------
!
! ... this module contains methods to read and write data produced by PWscf
!
! ... written by Carlo Sbraccia (2005)
!
USE iotk_module
USE xml_io_base
!
USE kinds, ONLY : DP
USE constants, ONLY : e2
USE io_files, ONLY : tmp_dir, prefix, iunpun, xmlpun
USE io_global, ONLY : ionode, ionode_id, stdout
USE mp, ONLY : mp_bcast
!
IMPLICIT NONE
!
PRIVATE
!
PUBLIC :: pw_writefile, pw_readfile
!
INTEGER, PARAMETER, PRIVATE :: iunout = 99
!
CONTAINS
!
!------------------------------------------------------------------------
SUBROUTINE pw_writefile( what )
!------------------------------------------------------------------------
!
USE cell_base, ONLY : at, bg, alat, tpiba, tpiba2, &
ibrav, symm_type, celldm
USE reciprocal_vectors, ONLY : ig_l2g
USE ions_base, ONLY : nsp, ityp, atm, nat, tau, if_pos
USE noncollin_module, ONLY : noncolin, npol
USE io_files, ONLY : nwordwfc, iunwfc, psfile, pseudo_dir
USE wavefunctions_module, ONLY : evc, evc_nc
USE klist, ONLY : nks, nkstot, xk, ngk, wk, &
lgauss, ngauss, degauss, nelec
USE gvect, ONLY : nr1, nr2, nr3, ngm, ngm_g, &
g, ig1, ig2, ig3, ecutwfc, dual, gcutm
USE gsmooth, ONLY : nr1s, nr2s, nr3s, gcutms, ngms_g
USE ktetra, ONLY : nk1, nk2, nk3, k1, k2, k3, &
ntetra, tetra, ltetra
USE wvfct, ONLY : gamma_only, npw, npwx, g2kin, et, wg, &
igk_l2g, nbnd
USE fixed_occ, ONLY : tfixed_occ, f_inp
USE ldaU, ONLY : lda_plus_u, Hubbard_lmax, Hubbard_l, &
Hubbard_U, Hubbard_alpha
USE spin_orb, ONLY : lspinorb
USE symme, ONLY : nsym, invsym, s, ftau
USE char, ONLY : sname
USE lsda_mod, ONLY : nspin, isk, lsda
USE dynam, ONLY : amass
USE funct, ONLY : dft
USE scf, ONLY : rho
!
USE mp_global, ONLY : kunit, nproc, nproc_pool, mpime
USE mp_global, ONLY : my_pool_id, &
intra_pool_comm, inter_pool_comm
USE mp, ONLY : mp_sum, mp_max
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: what
!
CHARACTER(LEN=256) :: dirname, filename, file_pseudo
CHARACTER(LEN=80) :: bravais_lattice
CHARACTER(LEN=4) :: cspin
CHARACTER(LEN=iotk_attlenx) :: attr
!
INTEGER :: i, ig, ik, ngg,ig_, ierr, ipol, &
flen, ik_eff, num_k_points
INTEGER, ALLOCATABLE :: kisort(:)
INTEGER :: npool, nkbl, nkl, nkr, npwx_g
INTEGER :: ike, iks, npw_g, ispin, local_pw
INTEGER, ALLOCATABLE :: ngk_g(:)
INTEGER, ALLOCATABLE :: itmp(:,:)
LOGICAL :: lgvec, lwfc
!
!
lgvec = .FALSE.
lwfc = .FALSE.
!
SELECT CASE( what )
CASE( "all" )
!
lgvec = .TRUE.
lwfc = .TRUE.
!
CASE DEFAULT
!
END SELECT
!
! ... create the main restart directory
!
dirname = TRIM( tmp_dir ) // TRIM( prefix ) // '.new-save'
!
CALL create_directory( dirname )
!
! ... create the k-points subdirectories
!
DO i = 1, nks
!
CALL create_directory( kpoint_dir( dirname, i ) )
!
END DO
!
IF ( nkstot > 0 ) THEN
!
! ... find out the number of pools
!
npool = nproc / nproc_pool
!
! ... find out number of k points blocks
!
nkbl = nkstot / kunit
!
! k points per pool
!
nkl = kunit * ( nkbl / npool )
!
! ... find out the reminder
!
nkr = ( nkstot - nkl * npool ) / kunit
!
! ... Assign the reminder to the first nkr pools
!
IF ( my_pool_id < nkr ) nkl = nkl + kunit
!
! ... find out the index of the first k point in this pool
!
iks = nkl * my_pool_id + 1
!
IF ( my_pool_id >= nkr ) iks = iks + nkr * kunit
!
! ... find out the index of the last k point in this pool
!
ike = iks + nkl - 1
!
END IF
!
! ... find out the global number of G vectors: ngm_g
!
ngm_g = ngm
!
CALL mp_sum( ngm_g, intra_pool_comm )
!
! ... collect all G vectors across processors within the pools
!
ALLOCATE( itmp( 3, ngm_g ) )
!
itmp = 0
!
DO ig = 1, ngm
!
itmp(1,ig_l2g(ig)) = ig1(ig)
itmp(2,ig_l2g(ig)) = ig2(ig)
itmp(3,ig_l2g(ig)) = ig3(ig)
!
END DO
!
CALL mp_sum( itmp, intra_pool_comm )
!
! ... build the G+k array indexes
!
ALLOCATE( kisort( npwx ) )
!
DO ik = 1, nks
!
kisort = 0
npw = npwx
!
CALL gk_sort( xk(1,ik+iks-1), ngm, g, &
ecutwfc/tpiba2, npw, kisort(1), g2kin )
!
CALL gk_l2gmap( ngm, ig_l2g(1), npw, kisort(1), igk_l2g(1,ik) )
!
ngk(ik) = npw
!
END DO
!
DEALLOCATE( kisort )
!
! ... compute the global number of G+k vectors for each k point
!
ALLOCATE( ngk_g( nkstot ) )
!
ngk_g = 0
ngk_g(iks:ike) = ngk(1:nks)
!
CALL mp_sum( ngk_g )
!
! ... compute the Maximum G vector index among all G+k an processors
!
npw_g = MAXVAL( igk_l2g(:,:) )
!
CALL mp_max( npw_g )
!
! ... compute the Maximum number of G vector among all k points
!
npwx_g = MAXVAL( ngk_g( 1:nkstot ) )
!
IF ( ionode ) THEN
!
! ... open XML descriptor
!
CALL iotk_open_write( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
! ... here we start writing the punch-file
!
! ... CELL
!
CALL write_cell( ibrav, symm_type, celldm, alat, &
at(:,1), at(:,2), at(:,3), bg(:,1), bg(:,2), bg(:,3) )
!
! ... IONS
!
CALL write_ions( nsp, nat, atm, ityp, &
psfile, pseudo_dir, amass, tau, if_pos, dirname, "alat" )
!
! ... SYMMETRIES
!
CALL write_symmetry( ibrav, symm_type, nsym, &
invsym, nr1, nr2, nr3, ftau, s, sname )
!
! ... PLANE_WAVES
!
CALL write_planewaves( ecutwfc, dual, npwx, gamma_only, nr1, nr2, &
nr3, ngm_g, nr1s, nr2s, nr3s, ngms_g, nr1, &
nr2, nr3, itmp, lgvec )
!
! ... SPIN
!
CALL write_spin( lsda, noncolin, npol, lspinorb )
!
! ... EXCHANGE_CORRELATION
!
CALL write_xc( DFT = dft, NSP = nsp, LDA_PLUS_U = lda_plus_u, &
HUBBARD_LMAX = Hubbard_lmax, HUBBARD_L = Hubbard_l, &
HUBBARD_U = Hubbard_U, HUBBARD_ALPHA = Hubbard_alpha )
!
! ... OCCUPATIONS
!
CALL write_occ( LGAUSS = lgauss, NGAUSS = ngauss, &
DEGAUSS = degauss, LTETRA = ltetra, NTETRA = ntetra, &
TFIXED_OCC = tfixed_occ, LSDA = lsda, NELUP = nbnd, &
NELDW = nbnd, F_INP = f_inp )
END IF
!
num_k_points = nkstot
!
IF ( nspin == 2 ) num_k_points = nkstot / 2
!
IF ( ionode ) THEN
!
! ... BRILLOUIN_ZONE
!
CALL write_bz( num_k_points, xk, wk )
!
! ... PARALLELISM
!
CALL iotk_write_begin( iunpun, "PARALLELISM" )
!
CALL iotk_write_dat( iunpun, &
"GRANULARITY_OF_K-POINTS_DISTRIBUTION", kunit )
!
CALL iotk_write_end( iunpun, "PARALLELISM" )
!
! ... CHARGE-DENSITY
!
CALL iotk_write_begin( iunpun, "CHARGE-DENSITY" )
!
CALL iotk_link( iunpun, "RHO_FILE", TRIM( prefix ) // ".rho", &
CREATE = .TRUE., BINARY = .TRUE., RAW = .TRUE. )
!
CALL iotk_write_begin( iunpun, "CHARGE-DENSITY", attr = attr )
CALL iotk_write_dat( iunpun, "RHO", rho )
CALL iotk_write_end( iunpun, "CHARGE-DENSITY" )
!
CALL iotk_write_end( iunpun, "CHARGE-DENSITY" )
!
! ... BAND_STRUCTURE
!
CALL iotk_write_begin( iunpun, "BAND_STRUCTURE" )
!
CALL iotk_write_dat( iunpun, "NUMBER_OF_ELECTRONS", nelec )
!
CALL iotk_write_dat( iunpun, "NUMBER_OF_BANDS", nbnd )
!
CALL iotk_write_dat( iunpun, "NUMBER_OF_SPIN_COMPONENTS", nspin )
!
CALL iotk_write_begin( iunpun, "EIGENVALUES_AND_EIGENVECTORS" )
!
END IF
!
k_points_loop: DO ik = 1, num_k_points
!
IF ( ionode ) THEN
!
CALL iotk_write_begin( iunpun, &
"K-POINT" // TRIM( iotk_index( ik ) ) )
!
CALL iotk_write_attr( attr, "UNIT", "2 pi / a", FIRST = .TRUE. )
CALL iotk_write_dat( iunpun, &
"K-POINT_COORDS", xk(:,ik), ATTR = attr )
!
CALL iotk_write_dat( iunpun, "WEIGHT", wk(ik) )
!
IF ( nspin == 2 ) THEN
!
cspin = iotk_index( isk(ik) )
!
CALL iotk_write_attr( attr, "UNIT", "Hartree", FIRST = .TRUE. )
CALL iotk_write_dat( iunpun, "ET" // TRIM( cspin ), &
et(:,ik) / e2, ATTR = attr )
!
IF ( wk(ik) == 0.D0 ) THEN
!
CALL iotk_write_dat( iunpun, "OCC" // TRIM( cspin ), 0.D0 )
!
ELSE
!
CALL iotk_write_dat( iunpun, "OCC" // &
& TRIM( cspin ), wg(:,ik) / wk(ik) )
!
END IF
!
ik_eff = ik + num_k_points
!
cspin = iotk_index( isk(ik_eff) )
!
CALL iotk_write_attr( attr, "UNIT", "Hartree", FIRST = .TRUE. )
CALL iotk_write_dat( iunpun, "ET" // TRIM( cspin ), &
et(:,ik_eff) / e2, ATTR = attr )
!
IF ( wk(ik) == 0.D0 ) THEN
!
CALL iotk_write_dat( iunpun, "OCC" // TRIM( cspin ), 0.D0 )
!
ELSE
!
CALL iotk_write_dat( iunpun, "OCC" // TRIM( cspin ), &
wg(:,ik_eff) / wk(ik_eff) )
!
END IF
!
ELSE
!
cspin = iotk_index( 1 )
!
CALL iotk_write_attr( attr, "UNIT", "Hartree", FIRST = .TRUE. )
CALL iotk_write_dat( iunpun, "ET" // TRIM( cspin ), &
et(:,ik) / e2, ATTR = attr )
!
IF ( wk(ik) == 0.D0 ) THEN
!
CALL iotk_write_dat( iunpun, "OCC" // TRIM( cspin ), 0.D0 )
!
ELSE
!
CALL iotk_write_dat( iunpun, "OCC" // &
& TRIM( cspin ), wg(:,ik) / wk(ik) )
!
END IF
!
END IF
!
IF ( lgvec ) THEN
!
! ... G+K vectors
!
filename = TRIM( wfc_filename( ".", 'gkvectors', ik ) )
!
CALL iotk_link( iunpun, "gkvectors", filename, &
CREATE = .FALSE., BINARY = .TRUE., RAW = .TRUE. )
!
filename = TRIM( wfc_filename( dirname, 'gkvectors', ik ) )
!
END IF
!
END IF
!
IF ( lgvec ) CALL write_gk( iunout, ik, filename )
!
IF ( lwfc ) THEN
!
! ... wavefunctions
!
IF ( nspin == 2 ) THEN
!
ispin = isk(ik)
!
IF ( ( ik >= iks ) .AND. ( ik <= ike ) ) THEN
!
CALL davcio( evc, nwordwfc, iunwfc, (ik-iks+1), -1 )
!
END IF
!
IF ( ionode ) THEN
!
filename = TRIM( wfc_filename( ".", 'evc', ik, ispin ) )
!
CALL iotk_link( iunpun, "wfc", filename, CREATE = .FALSE., &
BINARY = .TRUE., RAW = .TRUE. )
!
filename = TRIM( wfc_filename( dirname, 'evc', ik, ispin ) )
!
END IF
!
CALL write_wfc( iunout, ik, nkstot, kunit, ispin, nspin, &
evc, npw_g, nbnd, igk_l2g(:,ik-iks+1), &
ngk(ik-iks+1), filename, 1.0d0 )
!
ik_eff = ik + num_k_points
!
ispin = isk(ik_eff)
!
IF ( ( ik_eff >= iks ) .AND. ( ik_eff <= ike ) ) THEN
!
CALL davcio( evc, nwordwfc, iunwfc, (ik_eff-iks+1), -1 )
!
END IF
!
IF ( ionode ) THEN
!
filename = TRIM( wfc_filename( ".", 'evc', ik, ispin ) )
!
CALL iotk_link( iunpun, "wfc", filename, CREATE = .FALSE., &
BINARY = .TRUE., RAW = .TRUE. )
!
filename = TRIM( wfc_filename( dirname, 'evc', ik, ispin ) )
!
END IF
!
CALL write_wfc( iunout, ik_eff, nkstot, kunit, ispin, nspin, &
evc, npw_g, nbnd, igk_l2g(:,ik_eff-iks+1), &
ngk(ik_eff-iks+1), filename, 1.0d0 )
!
ELSE
!
IF ( ( ik >= iks ) .AND. ( ik <= ike ) ) THEN
!
IF ( noncolin ) THEN
!
CALL davcio( evc_nc, nwordwfc, iunwfc, (ik-iks+1), -1 )
!
ELSE
!
CALL davcio( evc, nwordwfc, iunwfc, (ik-iks+1), -1 )
!
END IF
!
END IF
!
IF ( ionode ) THEN
!
filename = TRIM( wfc_filename( ".", 'evc', ik ) )
!
CALL iotk_link( iunpun, "wfc", filename, CREATE = .FALSE., &
BINARY = .TRUE., RAW = .TRUE. )
!
filename = TRIM( wfc_filename( dirname, 'evc', ik ) )
!
END IF
!
IF ( noncolin ) THEN
!
DO ipol = 1, npol
!
CALL write_wfc( iunout, ik, nkstot, kunit, ispin, nspin, &
evc_nc(:,ipol,:), npw_g, nbnd, &
igk_l2g(:,ik-iks+1), ngk(ik-iks+1), &
filename, 1.0d0 )
!
END DO
!
ELSE
!
CALL write_wfc( iunout, ik, nkstot, kunit, ispin, nspin, &
evc, npw_g, nbnd, igk_l2g(:,ik-iks+1), &
ngk(ik-iks+1), filename, 1.0d0 )
!
END IF
!
END IF
!
END IF
!
IF ( ionode ) THEN
!
CALL iotk_write_end( iunpun, "K-POINT" // TRIM( iotk_index(ik) ) )
!
END IF
!
END DO k_points_loop
!
IF ( ionode ) THEN
!
CALL iotk_write_end( iunpun, "EIGENVALUES_AND_EIGENVECTORS" )
!
CALL iotk_write_end( iunpun, "BAND_STRUCTURE" )
!
CALL iotk_close_write( iunpun )
!
END IF
!
DEALLOCATE( itmp )
DEALLOCATE( ngk_g )
!
RETURN
!
CONTAINS
!
!--------------------------------------------------------------------
SUBROUTINE write_gk( iun, ik, filename )
!--------------------------------------------------------------------
!
IMPLICIT NONE
!
INTEGER, INTENT(IN) :: iun, ik
CHARACTER(LEN=256), INTENT(IN) :: filename
!
INTEGER, ALLOCATABLE :: igwk(:,:)
INTEGER, ALLOCATABLE :: itmp1(:)
!
!
ALLOCATE( igwk( npwx_g, nkstot ) )
!
igwk(:,ik) = 0
!
ALLOCATE( itmp1( npw_g ) )
!
itmp1 = 0
!
IF ( ik >= iks .AND. ik <= ike ) THEN
!
DO ig = 1, ngk(ik-iks+1)
!
itmp1(igk_l2g(ig,ik-iks+1)) = igk_l2g(ig,ik-iks+1)
!
END DO
!
END IF
!
CALL mp_sum( itmp1 )
!
ngg = 0
!
DO ig = 1, npw_g
!
if ( itmp1(ig) == ig ) THEN
!
ngg = ngg + 1
igwk(ngg,ik) = ig
!
END IF
!
END DO
!
DEALLOCATE( itmp1 )
!
IF ( ionode ) THEN
!
CALL iotk_open_write( iun, FILE = TRIM( filename ), &
BINARY = .TRUE. )
!
CALL iotk_write_begin( iun,"K-POINT" // iotk_index( ik ), attr )
!
CALL iotk_write_dat( iun, "INDEX", igwk(1:ngk_g(ik),ik) )
CALL iotk_write_dat( iun, "GRID", itmp(1:3,igwk(1:ngk_g(ik),ik)), &
FMT = "(3I5)" )
!
CALL iotk_write_end( iun, "K-POINT" // iotk_index( ik ) )
!
CALL iotk_close_write( iun )
!
END IF
!
DEALLOCATE( igwk )
!
END SUBROUTINE write_gk
!
END SUBROUTINE pw_writefile
!
!------------------------------------------------------------------------
SUBROUTINE pw_readfile( what, ierr )
!------------------------------------------------------------------------
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: what
INTEGER, INTENT(OUT) :: ierr
!
CHARACTER(LEN=256) :: dirname
LOGICAL :: lexist, lcell, lpw, lions, lspin, &
lxc, locc, lbz, lbs, lwfc, lgvec
!
!
ierr = 0
!
dirname = TRIM( tmp_dir ) // TRIM( prefix ) // '.new-save'
!
INQUIRE( FILE = TRIM( dirname ) // '/' // TRIM( xmlpun ), EXIST = lexist )
!
IF ( .NOT. lexist ) THEN
!
ierr = 1
!
RETURN
!
END IF
!
lcell = .FALSE.
lpw = .FALSE.
lions = .FALSE.
lspin = .FALSE.
lxc = .FALSE.
locc = .FALSE.
lbz = .FALSE.
lbs = .FALSE.
lwfc = .FALSE.
lgvec = .FALSE.
!
SELECT CASE( what )
CASE( 'config' )
!
lcell = .TRUE.
lions = .TRUE.
!
CASE( 'wave' )
!
lpw = .TRUE.
lwfc = .TRUE.
lgvec = .TRUE.
!
CASE( 'nowave' )
!
lcell = .TRUE.
lpw = .TRUE.
lions = .TRUE.
lspin = .TRUE.
lxc = .TRUE.
locc = .TRUE.
lbz = .TRUE.
lbs = .TRUE.
!
CASE( 'all' )
!
lcell = .TRUE.
lpw = .TRUE.
lions = .TRUE.
lspin = .TRUE.
lxc = .TRUE.
locc = .TRUE.
lbz = .TRUE.
lbs = .TRUE.
lwfc = .TRUE.
lgvec = .TRUE.
!
END SELECT
!
IF ( lcell ) CALL read_cell( dirname )
IF ( lpw ) CALL read_planewaves( dirname )
IF ( lions ) CALL read_ions( dirname )
IF ( lspin ) CALL read_spin( dirname )
IF ( lxc ) CALL read_xc( dirname )
IF ( locc ) CALL read_occupations( dirname )
IF ( lbz ) CALL read_brillouin_zone( dirname )
IF ( lbs ) CALL read_band_structure( dirname )
IF ( lwfc ) CALL read_wavefunctions( dirname )
!
RETURN
!
END SUBROUTINE pw_readfile
!
!------------------------------------------------------------------------
SUBROUTINE read_cell( dirname )
!------------------------------------------------------------------------
!
USE cell_base, ONLY : ibrav, alat, symm_type, at, bg
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
CHARACTER(LEN=80) :: bravais_lattice
!
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "CELL" )
!
CALL iotk_scan_dat( iunpun, &
"BRAVAIS_LATTICE", bravais_lattice )
!
SELECT CASE ( TRIM( bravais_lattice ) )
CASE( "free" )
ibrav = 0
CASE( "cubic P (sc)" )
ibrav = 1
CASE( "cubic F (fcc)" )
ibrav = 2
CASE( "cubic I (bcc)" )
ibrav = 3
CASE( "Hexagonal and Trigonal P" )
ibrav = 4
CASE( "Trigonal R" )
ibrav = 5
CASE( "Tetragonal P (st)" )
ibrav = 6
CASE( "Tetragonal I (bct)" )
ibrav = 7
CASE( "Orthorhombic P" )
ibrav = 8
CASE( "Orthorhombic base-centered(bco)" )
ibrav = 9
CASE( "Orthorhombic face-centered" )
ibrav = 10
CASE( "Orthorhombic body-centered" )
ibrav = 11
CASE( "Monoclinic P" )
ibrav = 12
CASE( "Monoclinic base-centered" )
ibrav = 13
CASE( "Triclinic P" )
ibrav = 14
END SELECT
!
IF ( ibrav == 0 ) &
CALL iotk_scan_dat( iunpun, "CELL_SYMMETRY", symm_type )
!
CALL iotk_scan_dat( iunpun, "LATTICE_PARAMETER", alat )
!
CALL iotk_scan_begin( iunpun, "DIRECT_LATTICE_VECTORS" )
CALL iotk_scan_dat( iunpun, "a1", at(:,1) )
CALL iotk_scan_dat( iunpun, "a2", at(:,2) )
CALL iotk_scan_dat( iunpun, "a3", at(:,3) )
CALL iotk_scan_end( iunpun, "DIRECT_LATTICE_VECTORS" )
!
! ... to alat units
!
at = at / alat
!
CALL iotk_scan_begin( iunpun, "RECIPROCAL_LATTICE_VECTORS" )
CALL iotk_scan_dat( iunpun, "b1", bg(:,1) )
CALL iotk_scan_dat( iunpun, "b2", bg(:,2) )
CALL iotk_scan_dat( iunpun, "b3", bg(:,3) )
CALL iotk_scan_end( iunpun, "RECIPROCAL_LATTICE_VECTORS" )
!
CALL iotk_scan_end( iunpun, "CELL" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
CALL mp_bcast( ibrav, ionode_id )
CALL mp_bcast( symm_type, ionode_id )
CALL mp_bcast( alat, ionode_id )
CALL mp_bcast( at, ionode_id )
CALL mp_bcast( bg, ionode_id )
!
RETURN
!
END SUBROUTINE read_cell
!
!------------------------------------------------------------------------
SUBROUTINE read_ions( dirname )
!------------------------------------------------------------------------
!
USE ions_base, ONLY : nat, nsp, ityp, amass, atm, tau, if_pos
USE cell_base, ONLY : alat
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
INTEGER :: i
CHARACTER(LEN=iotk_attlenx) :: attr
!
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "IONS" )
!
CALL iotk_scan_dat( iunpun, "NUMBER_OF_ATOMS", nat )
!
CALL iotk_scan_dat( iunpun, "NUMBER_OF_SPECIES", nsp )
!
DO i = 1, nsp
!
CALL iotk_scan_dat( iunpun, &
"ATOM_TYPE", atm(i) )
!
CALL iotk_scan_dat( iunpun, &
TRIM( atm(i) ) // "_MASS", amass(i) )
!
END DO
!
DO i = 1, nat
!
CALL iotk_scan_empty( iunpun, &
"ATOM" // TRIM( iotk_index(i) ), attr )
!
CALL iotk_scan_attr( attr, "INDEX", ityp(i) )
CALL iotk_scan_attr( attr, "tau", tau(:,i) )
CALL iotk_scan_attr( attr, "if_pos", if_pos(:,i) )
!
END DO
!
tau = tau / alat
!
CALL iotk_scan_end( iunpun, "IONS" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
CALL mp_bcast( nat, ionode_id )
CALL mp_bcast( nsp, ionode_id )
CALL mp_bcast( amass, ionode_id )
CALL mp_bcast( atm, ionode_id )
CALL mp_bcast( ityp, ionode_id )
CALL mp_bcast( tau, ionode_id )
CALL mp_bcast( if_pos, ionode_id )
!
RETURN
!
END SUBROUTINE read_ions
!
!------------------------------------------------------------------------
SUBROUTINE read_symmeries( dirname )
!------------------------------------------------------------------------
!
USE symme, ONLY : nsym, invsym, s, ftau
USE char, ONLY : sname
USE gvect, ONLY : nr1, nr2, nr3
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
INTEGER :: i
CHARACTER(LEN=iotk_attlenx) :: attr
REAL (KIND=DP) :: tmp(3)
!
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "SYMMERIES" )
!
CALL iotk_scan_dat( iunpun, "NUMBER_OF_SYMMETRIES", nsym )
!
CALL iotk_scan_dat( iunpun, "INVERSION_SYMMETRY", invsym )
!
DO i = 1, nsym
!
CALL iotk_scan_empty( iunpun, &
"SYMM" // TRIM( iotk_index( i ) ), attr )
!
CALL iotk_scan_attr( attr, "ROT", s(:,:,i) )
CALL iotk_scan_attr( attr, "FRAC_TRANS", tmp(:) )
CALL iotk_scan_attr( attr, "NAME", sname(i) )
!
ftau(1,i) = tmp(1) * DBLE( nr1 )
ftau(2,i) = tmp(2) * DBLE( nr2 )
ftau(3,i) = tmp(3) * DBLE( nr3 )
!
END DO
!
CALL iotk_scan_end( iunpun, "SYMMERIES" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
CALL mp_bcast( nsym, ionode_id )
CALL mp_bcast( invsym, ionode_id )
CALL mp_bcast( s, ionode_id )
CALL mp_bcast( ftau, ionode_id )
CALL mp_bcast( sname, ionode_id )
!
RETURN
!
END SUBROUTINE read_symmeries
!
!------------------------------------------------------------------------
SUBROUTINE read_planewaves( dirname )
!------------------------------------------------------------------------
!
USE gvect, ONLY : nr1, nr2, nr3, ngm_g, ecutwfc, dual
USE gsmooth, ONLY : nr1s, nr2s, nr3s, ngms_g
USE wvfct, ONLY : gamma_only, npwx, g2kin
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
CHARACTER(LEN=iotk_attlenx) :: attr
REAL(KIND=DP) :: ecutrho
!
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "PLANE_WAVES" )
!
CALL iotk_scan_dat( iunpun, "WFC_CUTOFF", ecutwfc )
!
CALL iotk_scan_dat( iunpun, "RHO_CUTOFF", ecutrho )
!
ecutwfc = ecutwfc * e2
ecutrho = ecutrho * e2
!
dual = ecutrho / ecutwfc
!
CALL iotk_scan_dat( iunpun, "MAX_NPW", npwx )
!
CALL iotk_scan_dat( iunpun, "GAMMA_ONLY", gamma_only )
!
CALL iotk_scan_empty( iunpun, "FFT_GRID", attr )
CALL iotk_scan_attr( attr, "nr1", nr1 )
CALL iotk_scan_attr( attr, "nr2", nr2 )
CALL iotk_scan_attr( attr, "nr3", nr3 )
!
CALL iotk_scan_dat( iunpun, "GVECT_NUMBER", ngm_g )
!
CALL iotk_scan_empty( iunpun, "SMOOTH_FFT_GRID", attr )
CALL iotk_scan_attr( attr, "nr1s", nr1s )
CALL iotk_scan_attr( attr, "nr2s", nr2s )
CALL iotk_scan_attr( attr, "nr3s", nr3s )
!
CALL iotk_scan_dat( iunpun, "SMOOTH_GVECT_NUMBER", ngms_g )
!
CALL iotk_scan_end( iunpun, "PLANE_WAVES" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
CALL mp_bcast( ecutwfc, ionode_id )
CALL mp_bcast( dual, ionode_id )
CALL mp_bcast( npwx, ionode_id )
CALL mp_bcast( gamma_only, ionode_id )
CALL mp_bcast( nr1, ionode_id )
CALL mp_bcast( nr2, ionode_id )
CALL mp_bcast( nr3, ionode_id )
CALL mp_bcast( ngm_g, ionode_id )
CALL mp_bcast( nr1s, ionode_id )
CALL mp_bcast( nr2s, ionode_id )
CALL mp_bcast( nr3s, ionode_id )
CALL mp_bcast( ngms_g, ionode_id )
!
RETURN
!
END SUBROUTINE read_planewaves
!
!------------------------------------------------------------------------
SUBROUTINE read_spin( dirname )
!------------------------------------------------------------------------
!
USE spin_orb, ONLY : lspinorb
USE lsda_mod, ONLY : nspin, lsda
USE noncollin_module, ONLY : noncolin, npol
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "SPIN" )
!
CALL iotk_scan_dat( iunpun, "LSDA", lsda )
!
IF ( lsda ) THEN
!
nspin = 2
!
ELSE
!
nspin = 1
!
END IF
!
CALL iotk_scan_dat( iunpun, "NON-COLINEAR_CALCULATION", noncolin )
!
IF ( noncolin ) THEN
!
CALL iotk_scan_dat( iunpun, "SPINOR_DIM", npol )
!
ELSE
!
npol = 1
!
END IF
!
CALL iotk_scan_dat( iunpun, "SPIN-ORBIT_CALCULATION", lspinorb )
!
CALL iotk_scan_end( iunpun, "SPIN" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
CALL mp_bcast( lsda, ionode_id )
CALL mp_bcast( nspin, ionode_id )
CALL mp_bcast( noncolin, ionode_id )
CALL mp_bcast( npol, ionode_id )
CALL mp_bcast( lspinorb, ionode_id )
!
RETURN
!
END SUBROUTINE read_spin
!
!------------------------------------------------------------------------
SUBROUTINE read_xc( dirname )
!------------------------------------------------------------------------
!
USE ions_base, ONLY : nsp
USE funct, ONLY : dft
USE ldaU, ONLY : lda_plus_u, Hubbard_lmax, &
Hubbard_l, Hubbard_U, Hubbard_alpha
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "EXCHANGE_CORRELATION" )
!
CALL iotk_scan_dat( iunpun, "DFT", dft )
!
CALL iotk_scan_dat( iunpun, "LDA_PLUS_U_CALCULATION", lda_plus_u )
!
IF ( lda_plus_u ) THEN
!
CALL iotk_scan_dat( iunpun, "HUBBARD_LMAX", Hubbard_lmax )
!
CALL iotk_scan_dat( iunpun, "HUBBARD_L", &
Hubbard_l(1:Hubbard_lmax) )
!
CALL iotk_scan_dat( iunpun, "HUBBARD_U", Hubbard_U(1:nsp) )
!
CALL iotk_scan_dat( iunpun, "HUBBARD_ALPHA", Hubbard_alpha(1:nsp) )
!
END IF
!
CALL iotk_scan_end( iunpun, "EXCHANGE_CORRELATION" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
CALL mp_bcast( dft, ionode_id )
CALL mp_bcast( lda_plus_u, ionode_id )
!
IF (lda_plus_u ) THEN
!
CALL mp_bcast( Hubbard_lmax, ionode_id )
CALL mp_bcast( Hubbard_l , ionode_id )
CALL mp_bcast( Hubbard_U, ionode_id )
CALL mp_bcast( Hubbard_alpha, ionode_id )
!
END IF
!
RETURN
!
END SUBROUTINE read_xc
!
!------------------------------------------------------------------------
SUBROUTINE read_occupations( dirname )
!------------------------------------------------------------------------
!
USE lsda_mod, ONLY : lsda
USE fixed_occ, ONLY : tfixed_occ, f_inp
USE ktetra, ONLY : ntetra, tetra, ltetra
USE klist, ONLY : lgauss, ngauss, degauss
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "OCCUPATIONS" )
!
CALL iotk_scan_dat( iunpun, "SMEARING_METHOD", lgauss )
!
IF ( lgauss ) THEN
!
CALL iotk_scan_dat( iunpun, "SMEARING_TYPE", ngauss )
!
CALL iotk_scan_dat( iunpun, "SMEARING_PARAMETER", degauss )
!
degauss = degauss * e2
!
END IF
!
CALL iotk_scan_dat( iunpun, "TETRAHEDRON_METHOD", ltetra )
!
IF ( ltetra ) &
CALL iotk_scan_dat( iunpun, "NUMBER_OF_TETRAHEDRA", ntetra )
!
CALL iotk_scan_dat( iunpun, "FIXED_OCCUPATIONS", tfixed_occ )
!
IF ( tfixed_occ ) THEN
!
CALL iotk_write_dat( iunpun, "INPUT_OCC_UP", f_inp(:,1) )
!
IF ( lsda ) &
CALL iotk_write_dat( iunpun, "INPUT_OCC_DOWN", f_inp(:,2) )
!
END IF
!
CALL iotk_scan_end( iunpun, "OCCUPATIONS" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
CALL mp_bcast( lgauss, ionode_id )
!
IF ( lgauss ) THEN
!
CALL mp_bcast( ngauss, ionode_id )
CALL mp_bcast( degauss, ionode_id )
!
END IF
!
CALL mp_bcast( ltetra, ionode_id )
!
IF ( ltetra ) CALL mp_bcast( ntetra, ionode_id )
!
CALL mp_bcast( tfixed_occ, ionode_id )
!
IF ( tfixed_occ ) CALL mp_bcast( f_inp, ionode_id )
!
RETURN
!
END SUBROUTINE read_occupations
!
!------------------------------------------------------------------------
SUBROUTINE read_brillouin_zone( dirname )
!------------------------------------------------------------------------
!
USE lsda_mod, ONLY : nspin
USE klist, ONLY : nkstot, xk, wk
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
CHARACTER(LEN=iotk_attlenx) :: attr
INTEGER :: ik, num_k_points
!
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "BRILLOUIN_ZONE" )
!
CALL iotk_scan_dat( iunpun, "NUMBER_OF_K-POINTS", num_k_points )
!
nkstot = num_k_points
!
IF ( nspin == 2 ) nkstot = num_k_points * 2
!
DO ik = 1, num_k_points
!
CALL iotk_scan_empty( iunpun, "K-POINT" // &
& TRIM( iotk_index( ik ) ), attr )
!
CALL iotk_scan_attr( attr, "XYZ", xk(:,ik) )
!
CALL iotk_scan_attr( attr, "WEIGHT", wk(ik) )
!
END DO
!
CALL iotk_scan_end( iunpun, "BRILLOUIN_ZONE" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
CALL mp_bcast( nkstot, ionode_id )
CALL mp_bcast( xk, ionode_id )
CALL mp_bcast( wk, ionode_id )
!
RETURN
!
END SUBROUTINE read_brillouin_zone
!
!------------------------------------------------------------------------
SUBROUTINE read_band_structure( dirname )
!------------------------------------------------------------------------
!
USE lsda_mod, ONLY : nspin, isk
USE klist, ONLY : nkstot, wk, nelec
USE wvfct, ONLY : et, wg, nbnd
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
CHARACTER(LEN=iotk_attlenx) :: attr
CHARACTER(LEN=4) :: cspin
INTEGER :: ik, ik_eff, num_k_points
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "BAND_STRUCTURE" )
!
CALL iotk_scan_dat( iunpun, "NUMBER_OF_ELECTRONS", nelec )
!
CALL iotk_scan_dat( iunpun, "NUMBER_OF_BANDS", nbnd )
!
num_k_points = nkstot
!
IF ( nspin == 2 ) num_k_points = nkstot / 2
!
k_points_loop: DO ik = 1, num_k_points
!
CALL iotk_scan_begin( iunpun, &
"K-POINT" // TRIM( iotk_index( ik ) ) )
!
IF ( nspin == 2 ) THEN
!
isk(ik) = 1
!
cspin = iotk_index( 1 )
!
CALL iotk_scan_dat( iunpun, "ET" // TRIM( cspin ), et(:,ik) )
!
et(:,ik) = et(:,ik) * e2
!
CALL iotk_scan_dat( iunpun, "OCC" // TRIM( cspin ), wg(:,ik) )
!
wg(:,ik) = wg(:,ik) * wk(ik)
!
ik_eff = ik + num_k_points
!
isk(ik_eff) = 2
!
cspin = iotk_index( 2 )
!
CALL iotk_scan_dat( iunpun, "ET" // TRIM( cspin ), et(:,ik_eff) )
!
et(:,ik_eff) = et(:,ik_eff) * e2
!
CALL iotk_scan_dat( iunpun, &
"OCC" // TRIM( cspin ), wg(:,ik_eff) )
!
wg(:,ik_eff) = wg(:,ik_eff) * wk(ik_eff)
!
ELSE
!
isk(ik) = 1
!
cspin = iotk_index( 1 )
!
CALL iotk_scan_dat( iunpun, "ET" // TRIM( cspin ), et(:,ik) )
!
et(:,ik) = et(:,ik) * e2
!
CALL iotk_write_dat( iunpun, "OCC" // TRIM( cspin ), wg(:,ik) )
!
wg(:,ik) = wg(:,ik) * wk(ik)
!
END IF
!
CALL iotk_scan_end( iunpun, "K-POINT" // TRIM( iotk_index( ik ) ) )
!
END DO k_points_loop
!
CALL iotk_scan_end( iunpun, "BAND_STRUCTURE" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
CALL mp_bcast( nelec, ionode_id )
CALL mp_bcast( nbnd, ionode_id )
CALL mp_bcast( isk, ionode_id )
CALL mp_bcast( et, ionode_id )
CALL mp_bcast( wg, ionode_id )
!
RETURN
!
END SUBROUTINE read_band_structure
!
!------------------------------------------------------------------------
SUBROUTINE read_wavefunctions( dirname )
!------------------------------------------------------------------------
!
USE cell_base, ONLY : tpiba2
USE lsda_mod, ONLY : nspin, isk
USE klist, ONLY : nkstot, wk, nelec, nks, xk, ngk
USE wvfct, ONLY : et, wg, nbnd
USE wvfct, ONLY : npw, npwx, g2kin, et, wg, &
igk_l2g, nbnd
USE wavefunctions_module, ONLY : evc, evc_nc
USE reciprocal_vectors, ONLY : ig_l2g
USE io_files, ONLY : nwordwfc, iunwfc
USE gvect, ONLY : ngm, ngm_g, ig1, ig2, ig3, g, ecutwfc
USE noncollin_module, ONLY : noncolin, npol
USE mp_global, ONLY : kunit, nproc, nproc_pool
USE mp_global, ONLY : my_pool_id, &
intra_pool_comm, inter_pool_comm
USE mp, ONLY : mp_sum, mp_max
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
CHARACTER(LEN=iotk_attlenx) :: attr
CHARACTER(LEN=4) :: cspin
CHARACTER(LEN=256) :: filename
INTEGER :: i, ig, ik, ngg,ig_, ierr, ipol, &
flen, ik_eff, num_k_points
INTEGER, ALLOCATABLE :: kisort(:)
INTEGER :: npool, nkbl, nkl, nkr, npwx_g
INTEGER :: ike, iks, npw_g, ispin, local_pw
INTEGER, ALLOCATABLE :: ngk_g(:)
INTEGER, ALLOCATABLE :: itmp(:,:)
!
!
IF ( nkstot > 0 ) THEN
!
! ... find out the number of pools
!
npool = nproc / nproc_pool
!
! ... find out number of k points blocks
!
nkbl = nkstot / kunit
!
! k points per pool
!
nkl = kunit * ( nkbl / npool )
!
! ... find out the reminder
!
nkr = ( nkstot - nkl * npool ) / kunit
!
! ... Assign the reminder to the first nkr pools
!
IF ( my_pool_id < nkr ) nkl = nkl + kunit
!
! ... find out the index of the first k point in this pool
!
iks = nkl * my_pool_id + 1
!
IF ( my_pool_id >= nkr ) iks = iks + nkr * kunit
!
! ... find out the index of the last k point in this pool
!
ike = iks + nkl - 1
!
END IF
!
! ... find out the global number of G vectors: ngm_g
!
ngm_g = ngm
!
CALL mp_sum( ngm_g, intra_pool_comm )
!
! ... collect all G vectors across processors within the pools
!
ALLOCATE( itmp( 3, ngm_g ) )
!
itmp = 0
!
DO ig = 1, ngm
!
itmp(1,ig_l2g(ig)) = ig1(ig)
itmp(2,ig_l2g(ig)) = ig2(ig)
itmp(3,ig_l2g(ig)) = ig3(ig)
!
END DO
!
CALL mp_sum( itmp, intra_pool_comm )
!
! ... build the G+k array indexes
!
ALLOCATE( kisort( npwx ) )
!
DO ik = 1, nks
!
kisort = 0
npw = npwx
!
CALL gk_sort( xk(1,ik+iks-1), ngm, g, &
ecutwfc/tpiba2, npw, kisort(1), g2kin )
!
CALL gk_l2gmap( ngm, ig_l2g(1), npw, kisort(1), igk_l2g(1,ik) )
!
ngk(ik) = npw
!
END DO
!
DEALLOCATE( kisort )
!
! ... compute the global number of G+k vectors for each k point
!
ALLOCATE( ngk_g( nkstot ) )
!
ngk_g = 0
ngk_g(iks:ike) = ngk(1:nks)
!
CALL mp_sum( ngk_g )
!
! ... compute the Maximum G vector index among all G+k an processors
!
npw_g = MAXVAL( igk_l2g(:,:) )
!
CALL mp_max( npw_g )
!
! ... compute the Maximum number of G vector among all k points
!
npwx_g = MAXVAL( ngk_g( 1:nkstot ) )
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "BAND_STRUCTURE" )
!
END IF
!
num_k_points = nkstot
!
IF ( nspin == 2 ) num_k_points = nkstot / 2
!
k_points_loop: DO ik = 1, num_k_points
!
IF ( ionode ) THEN
!
CALL iotk_scan_begin( iunpun, &
"K-POINT" // TRIM( iotk_index( ik ) ) )
!
END IF
!
IF ( nspin == 2 ) THEN
!
isk(ik) = 1
!
cspin = iotk_index( 1 )
!
IF ( ionode ) THEN
!
filename = TRIM( wfc_filename( dirname, 'evc', ik, ispin ) )
!
END IF
!
CALL read_wfc( iunout, ik_eff, nkstot, kunit, ispin, nspin, &
evc, npw_g, nbnd, igk_l2g(:,ik-iks+1), &
ngk(ik-iks+1), filename )
!
IF ( ( ik >= iks ) .AND. ( ik <= ike ) ) THEN
!
CALL davcio( evc, nwordwfc, iunwfc, (ik-iks+1), + 1 )
!
END IF
!
ik_eff = ik + num_k_points
!
isk(ik_eff) = 2
!
cspin = iotk_index( 2 )
!
IF ( ionode ) THEN
!
filename = TRIM( wfc_filename( dirname, 'evc', ik_eff, ispin ) )
!
END IF
!
CALL read_wfc( iunout, ik_eff, nkstot, kunit, ispin, nspin, &
evc, npw_g, nbnd, igk_l2g(:,ik_eff-iks+1), &
ngk(ik_eff-iks+1), filename )
!
IF ( ( ik_eff >= iks ) .AND. ( ik_eff <= ike ) ) THEN
!
CALL davcio( evc, nwordwfc, iunwfc, (ik_eff-iks+1), + 1 )
!
END IF
!
ELSE
!
isk(ik) = 1
!
cspin = iotk_index( 1 )
!
IF ( noncolin ) THEN
!
DO ipol = 1, npol
!
CALL read_wfc( iunout, ik_eff, nkstot, kunit, ispin, &
nspin, evc_nc(:,ipol,:), npw_g, nbnd, &
igk_l2g(:,ik-iks+1), ngk(ik-iks+1), filename )
!
END DO
!
ELSE
!
CALL read_wfc( iunout, ik_eff, nkstot, kunit, ispin, nspin, &
evc, npw_g, nbnd, igk_l2g(:,ik-iks+1), &
ngk(ik-iks+1), filename )
!
END IF
!
IF ( ( ik >= iks ) .AND. ( ik <= ike ) ) THEN
!
IF ( noncolin ) THEN
!
CALL davcio( evc_nc, nwordwfc, iunwfc, (ik-iks+1), + 1 )
!
ELSE
!
CALL davcio( evc, nwordwfc, iunwfc, (ik-iks+1), + 1 )
!
END IF
!
END IF
!
END IF
!
IF ( ionode ) THEN
!
CALL iotk_scan_end( iunpun, "K-POINT" // TRIM( iotk_index( ik ) ) )
!
END IF
!
END DO k_points_loop
!
IF ( ionode ) THEN
!
CALL iotk_scan_end( iunpun, "BAND_STRUCTURE" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
RETURN
!
END SUBROUTINE read_wavefunctions
!
!------------------------------------------------------------------------
SUBROUTINE read_( dirname )
!------------------------------------------------------------------------
!
! ... template
!
IMPLICIT NONE
!
CHARACTER(LEN=*), INTENT(IN) :: dirname
!
INTEGER :: idum
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iunpun, FILE = TRIM( dirname ) // &
& '/' // TRIM( xmlpun ), BINARY = .FALSE. )
!
CALL iotk_scan_begin( iunpun, "" )
!
CALL iotk_scan_end( iunpun, "" )
!
CALL iotk_close_read( iunpun )
!
END IF
!
CALL mp_bcast( idum, ionode_id )
!
RETURN
!
END SUBROUTINE read_
!
! ... method to write and read wavefunctions
!
!------------------------------------------------------------------------
SUBROUTINE write_wfc( iuni, ik, nk, kunit, ispin, &
nspin, wf0, ngw, nbnd, igl, ngwl, filename, scalef )
!------------------------------------------------------------------------
!
USE mp_wave
USE mp, ONLY : mp_sum, mp_get, mp_bcast, mp_max
USE mp_global, ONLY : mpime, nproc, root, me_pool, my_pool_id, &
nproc_pool, intra_pool_comm, root_pool
!
IMPLICIT NONE
!
INTEGER, INTENT(IN) :: iuni
INTEGER, INTENT(IN) :: ik, nk, kunit, ispin, nspin
COMPLEX(KIND=DP), INTENT(IN) :: wf0(:,:)
INTEGER, INTENT(IN) :: ngw
INTEGER, INTENT(IN) :: nbnd
INTEGER, INTENT(IN) :: ngwl
INTEGER, INTENT(IN) :: igl(:)
CHARACTER(LEN=256), INTENT(IN) :: filename
!
! scale factor, usually 1.0 for pw and 1/SQRT( omega ) CP
!
REAL(KIND=DP), INTENT(IN) :: scalef
!
INTEGER :: i, j, ierr
INTEGER :: nkl, nkr, nkbl, iks, ike, nkt, ikt, igwx
INTEGER :: npool, ipmask(nproc), ipsour
COMPLEX(KIND=DP), ALLOCATABLE :: wtmp(:)
INTEGER :: ierr_iotk
CHARACTER(LEN=iotk_attlenx) :: attr
!
!
! ... set working variables for k point index (ikt)
! ... and k points number (nkt)
!
ikt = ik
nkt = nk
!
! ... find out the number of pools
!
npool = nproc / nproc_pool
!
! ... find out number of k points blocks
!
nkbl = nkt / kunit
!
! ... k points per pool
!
nkl = kunit * ( nkbl / npool )
!
! ... find out the reminder
!
nkr = ( nkt - nkl * npool ) / kunit
!
! ... Assign the reminder to the first nkr pools
!
IF( my_pool_id < nkr ) nkl = nkl + kunit
!
! ... find out the index of the first k point in this pool
!
iks = nkl * my_pool_id + 1
!
IF( my_pool_id >= nkr ) iks = iks + nkr * kunit
!
! ... find out the index of the last k point in this pool
!
ike = iks + nkl - 1
!
ipmask = 0
ipsour = ionode_id
!
! ... find out the index of the processor which collect the data
! ... in the pool of ik
!
IF ( npool > 1 ) THEN
!
IF ( ( ikt >= iks ) .AND. ( ikt <= ike ) ) THEN
!
IF ( me_pool == root_pool ) ipmask( mpime + 1 ) = 1
!
END IF
!
CALL mp_sum( ipmask )
!
DO i = 1, nproc
!
IF( ipmask(i) == 1 ) ipsour = ( i - 1 )
!
END DO
!
END IF
!
igwx = 0
ierr = 0
!
IF ( ( ikt >= iks ) .AND. ( ikt <= ike ) ) THEN
!
IF ( ngwl > SIZE( igl ) ) THEN
!
ierr = 1
!
ELSE
!
igwx = MAXVAL( igl(1:ngwl) )
!
END IF
!
END IF
!
! ... get the maximum index within the pool
!
CALL mp_max( igwx, intra_pool_comm )
!
! ... now notify all procs if an error has been found
!
CALL mp_max( ierr )
!
IF ( ierr > 0 ) &
CALL errore( 'write_wfc ', ' wrong size ngl ', ierr )
!
IF ( ipsour /= ionode_id ) &
CALL mp_get( igwx, igwx, mpime, ionode_id, ipsour, 1 )
!
IF ( ionode ) THEN
!
CALL iotk_open_write( iuni, FILE = TRIM( filename ), BINARY = .TRUE. )
!
CALL iotk_write_begin( iuni, "K-POINT" // iotk_index( ik ) )
!
CALL iotk_write_attr( attr, "ngw", ngw, FIRST = .TRUE. )
CALL iotk_write_attr( attr, "nbnd", nbnd )
CALL iotk_write_attr( attr, "ik", ik )
CALL iotk_write_attr( attr, "nk", nk )
CALL iotk_write_attr( attr, "kunit", kunit )
CALL iotk_write_attr( attr, "ispin", ispin )
CALL iotk_write_attr( attr, "nspin", nspin )
CALL iotk_write_attr( attr, "igwx", igwx )
CALL iotk_write_attr( attr, "scale_factor", scalef )
!
CALL iotk_write_empty( iuni, "INFO", attr )
!
END IF
!
ALLOCATE( wtmp( MAX( igwx, 1 ) ) )
!
wtmp = 0.D0
!
DO j = 1, nbnd
!
IF ( npool > 1 ) THEN
!
IF ( ikt >= iks .AND. ikt <= ike ) &
CALL mergewf( wf0(:,j), wtmp, ngwl, igl, me_pool, &
nproc_pool, root_pool, intra_pool_comm )
!
IF ( ipsour /= ionode_id ) &
CALL mp_get( wtmp, wtmp, mpime, ionode_id, ipsour, j )
!
ELSE
!
CALL mergewf( wf0(:,j), wtmp, ngwl, igl, &
mpime, nproc, ionode_id )
!
END IF
!
IF ( ionode ) &
CALL iotk_write_dat( iuni, "evc" // iotk_index( j ), wtmp(1:igwx) )
!
END DO
!
IF ( ionode ) THEN
!
CALL iotk_write_end( iuni, "K-POINT" // iotk_index( ik ) )
!
CALL iotk_close_write( iuni )
!
END IF
!
DEALLOCATE( wtmp )
!
RETURN
!
END SUBROUTINE write_wfc
!
!------------------------------------------------------------------------
SUBROUTINE read_wfc( iuni, ik, nk, kunit, ispin, &
nspin, wf, ngw, nbnd, igl, ngwl, filename )
!------------------------------------------------------------------------
!
!
USE mp_wave
USE mp, ONLY : mp_sum, mp_get, mp_bcast, mp_max, mp_put
USE mp_global, ONLY : mpime, nproc, root, me_pool, my_pool_id, &
nproc_pool, intra_pool_comm, root_pool
!
IMPLICIT NONE
!
INTEGER, INTENT(IN) :: iuni
INTEGER, INTENT(INOUT) :: ik, nk, kunit, ispin, nspin
COMPLEX(KIND=DP), INTENT(OUT) :: wf(:,:)
INTEGER, INTENT(INOUT) :: ngw
INTEGER, INTENT(INOUT) :: nbnd
INTEGER, INTENT(IN) :: ngwl
INTEGER, INTENT(IN) :: igl(:)
CHARACTER(LEN=256), INTENT(IN) :: filename
!
INTEGER :: i, j, ierr, ipdest
INTEGER :: nkl, nkr, nkbl, iks, ike, nkt, ikt, igwx
INTEGER :: igwx_
INTEGER :: npool, ipmask(nproc), ipsour
COMPLEX(KIND=DP), ALLOCATABLE :: wtmp(:)
INTEGER :: ierr_iotk
CHARACTER(LEN=iotk_attlenx) :: attr
!
!
! ... set working variables for k point index (ikt)
! ... and k points number (nkt)
!
ikt = ik
nkt = nk
!
! ... find out the number of pools
!
npool = nproc / nproc_pool
!
! ... find out number of k points blocks
!
nkbl = nkt / kunit
!
! ... k points per pool
!
nkl = kunit * ( nkbl / npool )
!
! ... find out the reminder
!
nkr = ( nkt - nkl * npool ) / kunit
!
! ... Assign the reminder to the first nkr pools
!
IF( my_pool_id < nkr ) nkl = nkl + kunit
!
! ... find out the index of the first k point in this pool
!
iks = nkl * my_pool_id + 1
!
IF( my_pool_id >= nkr ) iks = iks + nkr * kunit
!
! ... find out the index of the last k point in this pool
!
ike = iks + nkl - 1
!
ipmask = 0
ipsour = ionode_id
!
! ... find out the index of the processor which collect the data
! ... in the pool of ik
!
IF ( npool > 1 ) THEN
!
IF ( ( ikt >= iks ) .AND. ( ikt <= ike ) ) THEN
!
IF ( me_pool == root_pool ) ipmask( mpime + 1 ) = 1
!
END IF
!
CALL mp_sum( ipmask )
!
DO i = 1, nproc
!
IF( ipmask(i) == 1 ) ipsour = ( i - 1 )
!
END DO
!
END IF
!
igwx = 0
ierr = 0
!
IF ( ( ikt >= iks ) .AND. ( ikt <= ike ) ) THEN
!
IF ( ngwl > SIZE( igl ) ) THEN
!
ierr = 1
!
ELSE
!
igwx = MAXVAL( igl(1:ngwl) )
!
END IF
!
END IF
!
! ... get the maximum index within the pool
!
CALL mp_max( igwx, intra_pool_comm )
!
! ... now notify all procs if an error has been found
!
CALL mp_max( ierr )
!
IF ( ierr > 0 ) &
CALL errore( 'read_wfc ', ' wrong size ngl ', ierr )
!
IF ( ipsour /= ionode_id ) &
CALL mp_get( igwx, igwx, mpime, ionode_id, ipsour, 1 )
!
IF ( ionode ) THEN
!
CALL iotk_open_read( iuni, FILE = TRIM( filename ), BINARY = .TRUE. )
!
CALL iotk_scan_begin( iuni, "K-POINT" // iotk_index( ik ) )
!
CALL iotk_scan_empty( iuni, "INFO", attr )
!
CALL iotk_scan_attr( attr, "ngw", ngw )
CALL iotk_scan_attr( attr, "nbnd", nbnd )
CALL iotk_scan_attr( attr, "ik", ik )
CALL iotk_scan_attr( attr, "nk", nk )
CALL iotk_scan_attr( attr, "kunit", kunit )
CALL iotk_scan_attr( attr, "ispin", ispin )
CALL iotk_scan_attr( attr, "nspin", nspin )
CALL iotk_scan_attr( attr, "igwx", igwx_ )
!
END IF
!
ALLOCATE( wtmp( MAX( igwx_, igwx ) ) )
!
wtmp = 0.D0
!
DO j = 1, nbnd
!
IF ( j <= SIZE( wf, 2 ) ) THEN
!
IF ( ionode ) &
CALL iotk_scan_dat( iuni, &
"evc" // iotk_index( j ), wtmp(1:igwx_) )
!
IF( igwx > igwx_ ) wtmp(igwx_+1:igwx) = 0.0d0
!
IF ( npool > 1 ) THEN
!
IF ( ipdest /= ionode_id ) &
CALL mp_put( wtmp, wtmp, mpime, ionode_id, ipdest, j )
!
IF( ( ikt >= iks ) .AND. ( ikt <= ike ) ) THEN
!
CALL splitwf( wf(:,j), wtmp, ngwl, igl, me_pool, &
nproc_pool, root_pool, intra_pool_comm )
!
ELSE
!
CALL splitwf( wf(:,j), wtmp, ngwl, &
igl, mpime, nproc, ionode_id )
!
END IF
!
END IF
!
END IF
!
END DO
!
IF ( ionode ) THEN
!
CALL iotk_scan_end( iuni, "K-POINT" // iotk_index( ik ) )
!
CALL iotk_close_read( iuni )
!
END IF
!
DEALLOCATE( wtmp )
!
RETURN
!
END SUBROUTINE read_wfc
!
END MODULE pw_restart