ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
timescpo.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
7 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
8 program timescpo
9  use itm_types
10  use euitm_schemas
11  use euitm_routines
12 
13  implicit none
14 
15  real(R8), pointer :: times(:)
16  integer :: idx,nslice,islice
17  integer :: shot, run
18  integer :: iargc, iarg, i, req_arg=2, narg, ncpo
19  character(len=132) :: arg, arg2
20  character(len=132), allocatable :: cpos(:)
21  character(len=132) :: user, machine, ual_version
22 
23  call getenv('USER', user)
24  call getenv('DATAVERSION', ual_version)
25  if(ual_version.eq.'') then
26  ual_version = '4.08b'
27  endif
28  call getenv('TOKAMAKNAME', machine)
29  if(machine.eq.'') then
30  machine = 'test'
31  endif
32  iarg=1
33  narg=iargc()
34 10 if(narg.lt.req_arg) then
35  write(*,*) 'Need to specify shot and run no'
36  write(*,*) 'Optionally preceded by "-u USER -d MACHINE -v UAL_VERSION"'
37  write(*,*) 'Optionally followed by a list of CPOs'
38  stop 'ERROR!'
39  endif
40  call getarg(iarg,arg)
41  if(arg(1:1).eq.'-') then
42  call getarg(iarg+1,arg2)
43  select case (arg(2:2))
44  case ('u')
45  user=arg2
46  case('d')
47  machine=arg2
48  case('v')
49  ual_version=arg2
50  case default
51  write(*,*) 'Unrecognized option ', trim(arg), ' ',trim(arg2)
52  stop
53  end select
54  iarg=iarg+2
55  req_arg=req_arg+2
56  goto 10
57  endif
58  read(arg,*) shot
59  call getarg(iarg+1,arg)
60  read(arg,*) run
61  iarg=iarg+2
62 
63  if(iarg.gt.narg) then
64  ncpo=1
65  allocate(cpos(ncpo))
66  cpos(1)='coreprof'
67  else
68  ncpo=narg-iarg+1
69  allocate(cpos(ncpo))
70  do i=1, ncpo
71  call getarg(iarg+i-1,cpos(i))
72  enddo
73  endif
74 
75  write(*,*) 'Processing shot/run = ',shot,' / ',run
76  call euitm_open_env('euitm',shot,run,idx,trim(user),trim(machine),trim(ual_version))
77  do i=1, ncpo
78  write(*,*) trim(cpos(i))
79  call euitm_get_times(idx,trim(cpos(i)),times)
80  write(*,*) 'Number of time points ',size(times)
81  write(*,*) times
82  deallocate(times)
83  enddo
84  call euitm_close(idx)
85  deallocate(cpos)
86 
87 end program timescpo
88 
89 
subroutine euitm_open_env(name, shot, run, retIdx, user, tokamak, version)
program timescpo
Print out the times stores in CPOs.
Definition: timescpo.f90:8
subroutine euitm_close(idx)