The Elk Code
 
Loading...
Searching...
No Matches
writemix.f90
Go to the documentation of this file.
1
2! Copyright (C) 2025 Eddie Harris-Lee, J. K. Dewhurst and S. Sharma.
3! This file is distributed under the terms of the GNU General Public License.
4! See the file COPYING for license details.
5
6subroutine writemix(nwork,work)
7use modmain
8implicit none
9! arguments
10integer, intent(in) :: nwork
11real(8), intent(in) :: work(nwork)
12open(80,file='MIXWORK'//trim(filext),form='UNFORMATTED',action='WRITE')
13write(80) iscl
14write(80) nwork
15write(80) work
16close(80)
17end subroutine
18
character(256) filext
Definition modmain.f90:1300
integer iscl
Definition modmain.f90:1048
subroutine writemix(nwork, work)
Definition writemix.f90:7