The Elk Code
 
Loading...
Searching...
No Matches
putevalwx.f90
Go to the documentation of this file.
1
2! Copyright (C) 2020 Chung-Yu Wang, J. K. Dewhurst, S. Sharma and
3! E. K. U. Gross. This file is distributed under the terms of the GNU General
4! Public License. See the file COPYING for license details.
5
6subroutine putevalwx(iq,evalwxp)
7use modmain
8use modphonon
9implicit none
10! arguments
11integer, intent(in) :: iq
12real(8), intent(in) :: evalwxp(nbph)
13! local variables
14integer recl
15! find the record length
16inquire(iolength=recl) vql(:,iq),nbph,evalwxp
17!$OMP CRITICAL(u330)
18open(330,file='EVALWX.OUT',form='UNFORMATTED',access='DIRECT',recl=recl)
19write(330,rec=iq) vql(:,iq),nbph,evalwxp
20close(330)
21!$OMP END CRITICAL(u330)
22end subroutine
23
real(8), dimension(:,:), allocatable vql
Definition modmain.f90:545
subroutine putevalwx(iq, evalwxp)
Definition putevalwx.f90:7