quantum-espresso/PW/openfil.f90

103 lines
3.0 KiB
Fortran

!
! Copyright (C) 2001-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 .
!
!
!----------------------------------------------------------------------------
SUBROUTINE openfil()
!----------------------------------------------------------------------------
!
! ... This routine opens some files needed to the self consistent run,
! ... sets various file names, units, record lengths
! ... All units are set in Modules/io_files.f90
!
USE kinds, ONLY : DP
USE io_global, ONLY : stdout
USE basis, ONLY : natomwfc, startingwfc
USE wvfct, ONLY : nbnd, npwx
USE ldaU, ONLY : lda_plus_U
USE io_files, ONLY : prefix, iunpun, iunat, iunwfc, iunigk, &
nwordwfc, nwordatwfc, iunefield, &
tmp_dir, wfc_dir
USE pw_restart, ONLY : pw_readfile
USE restart_module, ONLY : readfile_new
USE noncollin_module, ONLY : npol
USE mp_global, ONLY : kunit
USE bp, ONLY : lelfield
!
IMPLICIT NONE
!
LOGICAL :: exst
INTEGER :: ierr
REAL(DP) :: edum(1,1), wdum(1,1)
CHARACTER(len=256) :: tmp_dir_sav
!
!
! ... nwordwfc is the record length for the direct-access file
! ... containing wavefunctions
!
! we'll swap wfc_dir for tmp_dir for large files
tmp_dir_sav = tmp_dir
!
! WRITE( stdout, '(5X,"openfil: wfc storage path = ",A)' ) TRIM(wfc_dir)
IF (.not.(wfc_dir=='undefined')) THEN
WRITE( stdout, '(5X,"writing wfc files to a dedicated directory")' )
tmp_dir = wfc_dir
ENDIF
!
nwordwfc = 2 * nbnd * npwx * npol
!
CALL diropn( iunwfc, 'wfc', nwordwfc, exst )
!
IF ( startingwfc == 'file' .AND. .NOT. exst ) THEN
!
#if defined (__NEWPUNCH)
!
CALL pw_readfile( 'wave', ierr )
!
#else
!
CALL readfile_new( 'wave', iunpun, edum, wdum, kunit, nwordwfc, &
iunwfc, ierr )
!
#endif
!
IF ( ierr > 0 ) THEN
!
WRITE( stdout, '(5X,"Cannot read wfc file: not found")' )
!
startingwfc = 'atomic'
!
END IF
!
END IF
!
! ... Needed for LDA+U
!
! ... iunat contains the orthogonalized wfcs
! ... iunocc contains the atomic occupations computed in new_ns
! ... it is opened and closed for each reading-writing operation
!
nwordatwfc = 2 * npwx * natomwfc * npol
!
IF ( lda_plus_u ) &
CALL diropn( iunat, 'atwfc', nwordatwfc, exst )
!
! ... iunigk contains the number of PW and the indices igk
! ... Note that unit 15 is reserved for error messages
!
CALL seqopn( iunigk, 'igk', 'UNFORMATTED', exst )
!
! ... open units for electric field calculations
!
IF ( lelfield ) CALL diropn( iunefield, 'ewfc', nwordwfc, exst )
!
tmp_dir = tmp_dir_sav
!
RETURN
!
END SUBROUTINE openfil