ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
ets_wrapper_emeq_e3m.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
7 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
9 
10  use euitm_schemas
11  implicit none
12 
13 contains
14 
15  subroutine emeq_e3m_wrapper(EQUILIBRIUM_in, EQUILIBRIUM_out)
16 
17  use xml_file_reader
18  use write_structures
19  use emeq
20 
21  implicit none
22 
23  TYPE (type_equilibrium), POINTER :: equilibrium_in(:)
24  TYPE (type_equilibrium), POINTER :: equilibrium_out(:)
25  type (type_param), save :: code_parameters
26  logical, save :: first = .true.
27  integer, save :: ncall = 0
28  character*32 :: filename = 'EQ_######'
29 
30  if(first) then
31  call fill_param(code_parameters, 'XML/emeq.xml', '', 'XML/emeq.xsd')
32  first=.false.
33  endif
34 
35  write(filename(4:9),'(I6.6)') ncall
36 ! call open_write_file(1, trim(filename)//'.IN')
37 ! call write_cpo(equilibrium_in(1), 'equilibrium')
38 ! call close_write_file
39  write(*,*) 'associated(euitm_equilibrium_out) ', associated(equilibrium_out)
40  CALL emeq_e3m(equilibrium_in, equilibrium_out, code_parameters)
41 ! call open_write_file(1, trim(filename)//'.OUT')
42 ! call write_cpo(equilibrium_out(1), 'equilibrium')
43 ! call close_write_file
44  ncall=ncall+1
45 
46  return
47 
48  end subroutine emeq_e3m_wrapper
49 
50 end module ets_wrapper_emeq_e3m
subroutine emeq_e3m(EQUILIBRIUM_IN, EQUILIBRIUM_OUT, code_parameters)
Definition: emeq.f90:18
EMEQ_E3M.
Definition: emeq.f90:11
subroutine emeq_e3m_wrapper(EQUILIBRIUM_in, EQUILIBRIUM_out)