File: gengvsmt.f90

package info (click to toggle)
elkcode 5.4.24-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,840 kB
  • sloc: f90: 48,415; fortran: 22,457; perl: 965; makefile: 384; sh: 369; python: 105; ansic: 67
file content (27 lines) | stat: -rw-r--r-- 737 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

! Copyright (C) 2013 J. K. Dewhurst, S. Sharma and E. K. U. Gross.
! This file is distributed under the terms of the GNU General Public License.
! See the file COPYING for license details.

subroutine gengvsmt
use modmain
use modphonon
implicit none
! local variables
integer nr,nri,np
! allocatable arrays
complex(8), allocatable :: zfmt(:),gzfmt(:,:)
allocate(zfmt(npmtmax),gzfmt(npmtmax,3))
nr=nrmt(isph)
nri=nrmti(isph)
np=npmt(isph)
! convert potential to complex spherical harmonics
call rtozfmt(nr,nri,vsmt(:,iasph),zfmt)
! calculate the gradient
call gradzfmt(nr,nri,rsp(:,isph),zfmt,npmtmax,gzfmt)
! copy current polarisation component to global array
gvsmt(1:np)=gzfmt(1:np,ipph)
deallocate(zfmt,gzfmt)
return
end subroutine