ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
ascii_equilibrium_to_ual.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
7 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
9 
10  use itm_types
11  USE euitm_routines
12  use euitm_schemas
13  use xml_file_reader
14  use read_structures
15  use deallocate_structures
16  implicit none
17 
18  type (type_equilibrium), pointer :: euitm_equilibrium(:)
19  logical, save :: first = .true.
20  integer, save :: ncall = 0
21  character*256 :: arg
22  character*32 :: filename, user, tokamak, ual_version
23  integer(itm_i4) :: i, iargc
24  integer :: shot, run
25  real(R8) :: time
26  integer :: idx
27 
28  if(iargc().lt.6) then
29  write(*,*) 'args should be: filename shot run user tokamak ual_version'
30  stop 'error: missing arguments'
31  endif
32  call getarg(1,arg)
33  filename=arg
34  call getarg(2,arg)
35  read(arg,*) shot
36  call getarg(3,arg)
37  read(arg,*) run
38  call getarg(4,arg)
39  user=arg
40  call getarg(5,arg)
41  tokamak=arg
42  call getarg(6,arg)
43  ual_version=arg
44 
45  write(*,*) 'Processing ',trim(filename), shot, run, trim(user), trim(tokamak), trim(ual_version)
46 
47  call open_read_file(1, filename)
48  allocate(euitm_equilibrium(1))
49  call read_cpo(euitm_equilibrium(1), 'equilibrium')
50  call close_read_file
51 
52  time=0.0
53 
54  CALL euitm_create_env('euitm', shot, run, 0, 0, idx, &
55  user, tokamak, ual_version)
56  euitm_equilibrium(1)%time = time
57  write(*,*) 'euitm_put_non_timed: equilibrium', euitm_equilibrium(1)%time
58  call euitm_put_non_timed(idx,"equilibrium",euitm_equilibrium(1))
59  write(*,*) 'euitm_put_slice: equilibrium', euitm_equilibrium(1)%time
60  call euitm_put_slice(idx,"equilibrium",euitm_equilibrium(1))
61 
62  call deallocate_cpo(euitm_equilibrium)
63 
64 end program ascii_equilibrium_to_ual
program ascii_equilibrium_to_ual
Run helena based on a CPO stored in ascii format.