quantum-espresso/PHonon/PH/phonon.f90

111 lines
3.4 KiB
Fortran

!
! Copyright (C) 2001-2009 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 .
!
!-----------------------------------------------------------------------
PROGRAM phonon
!-----------------------------------------------------------------------
!
! ... This is the main driver of the phonon code.
! ... It reads all the quantities calculated by pwscf, it
! ... checks if some recover file is present and determines
! ... which calculation needs to be done. Finally, it calls do_phonon
! ... that does the loop over the q points.
! ... Presently implemented:
! ... dynamical matrix (q/=0) NC [4], US [4], PAW [4]
! ... dynamical matrix (q=0) NC [5], US [5], PAW [4]
! ... dielectric constant NC [5], US [5], PAW [3]
! ... born effective charges NC [5], US [5], PAW [3]
! ... polarizability (iu) NC [2], US [2]
! ... electron-phonon NC [3], US [3]
! ... electro-optic NC [1]
! ... raman tensor NC [1]
!
! NC = norm conserving pseudopotentials
! US = ultrasoft pseudopotentials
! PAW = projector augmented-wave
! [1] LDA,
! [2] [1] + GGA,
! [3] [2] + LSDA/sGGA,
! [4] [3] + Spin-orbit/nonmagnetic, non-local vdW functionals, DFT-D2
! [5] [4] + Spin-orbit/magnetic (experimental when available)
!
! Not implemented in ph.x:
! [6] [5] + constraints on the magnetization
! [7] Tkatchenko-Scheffler, DFT-D3
! [8] Hybrid and meta-GGA functionals
! [9] External Electric field
! [10] nonperiodic boundary conditions.
USE control_ph, ONLY : bands_computed, qplot
USE check_stop, ONLY : check_stop_init
USE ph_restart, ONLY : ph_writefile
USE environment, ONLY : environment_start
USE mp_global, ONLY : mp_startup
USE mp_world, ONLY : world_comm
USE mp_pools, ONLY : intra_pool_comm
USE mp_bands, ONLY : intra_bgrp_comm, inter_bgrp_comm
USE command_line_options, ONLY : input_file_, ndiag_
! YAMBO >
USE YAMBO, ONLY : elph_yambo,dvscf_yambo
! YAMBO <
!
IMPLICIT NONE
!
include 'laxlib.fh'
!
INTEGER :: iq, ierr
LOGICAL :: do_band, do_iq, setup_pw
CHARACTER (LEN=9) :: code = 'PHONON'
CHARACTER (LEN=256) :: auxdyn
!
! Initialize MPI, clocks, print initial messages
!
CALL mp_startup ( start_images=.true. )
CALL laxlib_start ( ndiag_, world_comm, intra_bgrp_comm, &
do_distr_diag_inside_bgrp_ = .true. )
CALL set_mpi_comm_4_solvers( intra_pool_comm, intra_bgrp_comm, &
inter_bgrp_comm )
CALL environment_start ( code )
!
! ... and begin with the initialization part
!
CALL phq_readin()
!
CALL check_stop_init()
!
! ... Checking the status of the calculation and if necessary initialize
! ... the q mesh
!
CALL check_initial_status(auxdyn)
!
! ... Do the loop over the q points and irreps.
!
CALL do_phonon(auxdyn)
!
! reset the status of the recover files
!
CALL ph_writefile('status_ph',1,0,ierr)
!
! YAMBO >
IF (.not.elph_yambo.and..not.dvscf_yambo) then
! YAMBO <
!
IF (qplot) CALL write_qplot_data(auxdyn)
!
IF (bands_computed) CALL print_clock_pw()
!
! YAMBO >
ENDIF
! YAMBO <
!
CALL laxlib_end()
CALL stop_smoothly_ph( .TRUE. )
!
STOP
!
END PROGRAM phonon