ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fusion_test.f90
Go to the documentation of this file.
1 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
7 ! + + + + + + + + + + + + + + + + + + + + + + + + + + + +
8 program fusion_test
9  use itm_types
10  use euitm_schemas
11  use euitm_routines
12  use deallocate_structures
13  use write_structures
16  use itm_constants
17 
18  implicit none
19 
20  real(R8), pointer :: times(:)
21  integer :: idx,nslice,islice
22  integer :: shot, run
23  integer :: iargc, iarg, i, req_arg=2, narg, ncpo
24  character(len=132) :: arg, arg2
25  character(len=132), allocatable :: cpos(:)
26  character(len=132) :: user, machine, ual_version
27  REAL (R8) :: time
28  type(type_coreprof), pointer :: coreprof(:)
29  type (type_equilibrium), pointer :: equilibrium(:)
30  type(type_coresource), pointer :: coresource(:)
31  type (type_distsource), pointer :: distsource(:)
32 
33  call getenv('USER', user)
34  call getenv('DATAVERSION', ual_version)
35  if(ual_version.eq.'') then
36  ual_version = '4.10b'
37  endif
38  call getenv('TOKAMAKNAME', machine)
39  if(machine.eq.'') then
40  machine = 'test'
41  endif
42  iarg=1
43  narg=iargc()
44 10 if(narg.lt.req_arg) then
45  write(*,*) 'Need to specify shot and run no'
46  write(*,*) 'Optionally preceded by "-u USER -d MACHINE -v UAL_VERSION"'
47  stop 'ERROR!'
48  endif
49  call getarg(iarg,arg)
50  if(arg(1:1).eq.'-') then
51  call getarg(iarg+1,arg2)
52  select case (arg(2:2))
53  case ('u')
54  user=arg2
55  case('d')
56  machine=arg2
57  case('v')
58  ual_version=arg2
59  case default
60  write(*,*) 'Unrecognized option ', trim(arg), ' ',trim(arg2)
61  stop
62  end select
63  iarg=iarg+2
64  req_arg=req_arg+2
65  goto 10
66  endif
67  read(arg,*) shot
68  call getarg(iarg+1,arg)
69  read(arg,*) run
70  iarg=iarg+2
71 
72  write(*,*) 'Processing shot/run = ',shot,' / ',run
73  call euitm_open_env('euitm',shot,run,idx,trim(user),trim(machine),trim(ual_version))
74  time = 1.0e8_r8
75  call euitm_get_times(idx,'coreprof',times)
76  write(*,*) 'Number of time points ',size(times)
77 ! write(*,*) times
78 
79  allocate(coreprof(1))
80  allocate(equilibrium(1))
81 
82  call set_write_verbosity(0) ! no verbose output
83  call open_write_file(12, 'coresource_fusion.cpo')
84  do i = 1, size(times)
85  CALL euitm_get_slice(idx, 'coreprof', coreprof(1), times(i), ual_closest_sample)
86  write(*,*) 'Te, Ti(ave) = ', coreprof(1)%te%value(1), &
87  sum(coreprof(1)%ti%value(1,:) * coreprof(1)%ni%value(1,:)) / sum(coreprof(1)%ni%value(1,:))
88  call fusion_sources(coreprof, coresource)
89  call write_cpo(coresource, 'coresource')
90  enddo
91  call close_write_file
92 
93  call set_write_verbosity(0) ! no verbose output
94  call open_write_file(12, 'distsource_fusion.cpo')
95  do i = 1, size(times)
96  CALL euitm_get_slice(idx, 'coreprof', coreprof(1), times(i), ual_closest_sample)
97  CALL euitm_get_slice(idx, 'equilibrium', equilibrium(1), times(i), ual_closest_sample)
98  write(*,*) 'Te, Ti(ave) = ', coreprof(1)%te%value(1), &
99  sum(coreprof(1)%ti%value(1,:) * coreprof(1)%ni%value(1,:)) / sum(coreprof(1)%ni%value(1,:))
100  call fusion_dist_sources(coreprof, equilibrium, distsource)
101  call write_cpo(distsource, 'distsource')
102  enddo
103  call close_write_file
104 
105  deallocate(times)
106  call euitm_close(idx)
107  call deallocate_cpo(coreprof)
108  call deallocate_cpo(equilibrium)
109  call deallocate_cpo(coresource)
110  call deallocate_cpo(distsource)
111 
112 end program fusion_test
113 
114 
subroutine fusion_sources(coreprof, coresource)
subroutine euitm_open_env(name, shot, run, retIdx, user, tokamak, version)
Module implementing fusion sources.
Module implementing fusion sources.
program fusion_test
Print out the times stores in CPOs.
Definition: fusion_test.f90:8
subroutine fusion_dist_sources(coreprof, equilibrium, distsource)
subroutine euitm_close(idx)