ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
sizecpo.f90
Go to the documentation of this file.
1 program sizecpo
2  use itm_types
3  use euitm_schemas
4  use euitm_routines
5  use size_of_structures
6  use deallocate_structures
7 
8  implicit none
9 
10  type(type_coreprof),pointer :: coreprof(:) => null()
11  type(type_equilibrium),pointer :: equilibrium(:) => null()
12  type(type_coretransp),pointer :: coretransp(:) => null()
13  type(type_coresource),pointer :: coresource(:) => null()
14  integer idx,nslice,islice
15  integer (ITM_I8) total_size(3)
16  integer shot, run
17  integer iargc
18  character*132 arg
19 
20  if(iargc().ne.2) then
21  write(*,*) 'Need to specify shot and run no'
22  stop 'ERROR!'
23  endif
24  call getarg(1,arg)
25  read(arg,*) shot
26  call getarg(2,arg)
27  read(arg,*) run
28 
29  write(*,*) 'Processing shot/run = ',shot,' / ',run
30  call euitm_open('euitm',shot,run,idx)
31 
32 ! call euitm_open('euitm',5,2,idx)
33 ! call euitm_open('euitm',3,749,idx)
34 ! call euitm_open('euitm',5,55,idx)
35 ! call euitm_open('euitm',5,56,idx)
36 ! call euitm_open('euitm',5,57,idx)
37 
38  call set_size_of_maxlevel(0)
39  total_size=0
40 
41  call euitm_get(idx,'coresource',coresource)
42  if(associated(coresource)) then
43  nslice=size(coresource)
44  do islice=1,nslice
45  total_size(3)=0
46  call size_of_cpo(coresource(islice),total_size(3),.false.,'coresource')
47  total_size(2)=total_size(2)+total_size(3)
48  enddo
49  call deallocate_cpo(coresource)
50  endif
51  write(*,*) ' coresource ',total_size(2),nslice
52  total_size(1)=total_size(1)+total_size(2)
53  total_size(2)=0
54 
55  call euitm_get(idx,'coretransp',coretransp)
56  if(associated(coretransp)) then
57  nslice=size(coretransp)
58  do islice=1,nslice
59  total_size(3)=0
60  call size_of_cpo(coretransp(islice),total_size(3),.false.,'coretransp')
61  total_size(2)=total_size(2)+total_size(3)
62  enddo
63  call deallocate_cpo(coretransp)
64  endif
65  write(*,*) ' coretransp ',total_size(2),nslice
66  total_size(1)=total_size(1)+total_size(2)
67  total_size(2)=0
68 
69  call euitm_get(idx,'coreprof',coreprof)
70  if(associated(coreprof)) then
71  nslice=size(coreprof)
72  do islice=1,nslice
73  total_size(3)=0
74  call size_of_cpo(coreprof(islice),total_size(3),.false.,'coreprof')
75  total_size(2)=total_size(2)+total_size(3)
76  enddo
77  call deallocate_cpo(coreprof)
78  endif
79  write(*,*) ' coreprof ',total_size(2),nslice
80  total_size(1)=total_size(1)+total_size(2)
81  total_size(2)=0
82 
83  call euitm_get(idx,'equilibrium',equilibrium)
84  if(associated(equilibrium)) then
85  nslice=size(equilibrium)
86  do islice=1,nslice
87  total_size(3)=0
88  call size_of_cpo(equilibrium(islice),total_size(3),.false.,'equilibrium')
89  total_size(2)=total_size(2)+total_size(3)
90  enddo
91  call deallocate_cpo(equilibrium)
92  endif
93  write(*,*) 'equilibrium ',total_size(2),nslice
94  total_size(1)=total_size(1)+total_size(2)
95  total_size(2)=0
96 
97  write(*,*) ' Total ',total_size(1)
98 
99  call euitm_close(idx)
100 
101 end program sizecpo
102 
103 
subroutine euitm_close(idx)
program sizecpo
Definition: sizecpo.f90:1