12 use deallocate_structures
20 real(R8),
pointer :: times(:)
21 integer :: idx,nslice,islice
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
28 type(type_coreprof
),
pointer :: coreprof(:)
29 type (type_equilibrium
),
pointer :: equilibrium(:)
30 type(type_coresource
),
pointer :: coresource(:)
31 type (type_distsource
),
pointer :: distsource(:)
33 call getenv(
'USER', user)
34 call getenv(
'DATAVERSION', ual_version)
35 if(ual_version.eq.
'')
then
38 call getenv(
'TOKAMAKNAME', machine)
39 if(machine.eq.
'')
then
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"'
50 if(arg(1:1).eq.
'-')
then
51 call getarg(iarg+1,arg2)
52 select case (arg(2:2))
60 write(*,*)
'Unrecognized option ', trim(arg),
' ',trim(arg2)
68 call getarg(iarg+1,arg)
72 write(*,*)
'Processing shot/run = ',shot,
' / ',run
73 call
euitm_open_env(
'euitm',shot,run,idx,trim(user),trim(machine),trim(ual_version))
75 call euitm_get_times(idx,
'coreprof',times)
76 write(*,*)
'Number of time points ',
size(times)
80 allocate(equilibrium(1))
82 call set_write_verbosity(0)
83 call open_write_file(12,
'coresource_fusion.cpo')
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,:))
89 call write_cpo(coresource,
'coresource')
93 call set_write_verbosity(0)
94 call open_write_file(12,
'distsource_fusion.cpo')
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,:))
101 call write_cpo(distsource,
'distsource')
103 call close_write_file
107 call deallocate_cpo(coreprof)
108 call deallocate_cpo(equilibrium)
109 call deallocate_cpo(coresource)
110 call deallocate_cpo(distsource)
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.
subroutine fusion_dist_sources(coreprof, equilibrium, distsource)
subroutine euitm_close(idx)