ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fc2k_check_bc.f90
Go to the documentation of this file.
1 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
2 ! routine to check boundary condition consistency
3 ! in ETS workflow
4 ! the following checks are done:
5 ! 1- nion>0 (number of ions in composition should be positive)
6 ! 2 -ne bc is valid (>0)
7 ! 3 - if electron density is predictive, one of ions should be interpretative (to force quasineutrality)
8 ! 4 - ion bc are valid (number of bc should be the same as number of ions in composition)
9 !
10 !
11 ! author:D.Yadykin
12 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
13 
14 
15 subroutine interface_check_bc(nion_in,array_in,array_out,eflag_out,emessage_out)
16 
17 implicit none
18 
19 integer, intent(in),dimension(:) :: array_in
20 integer, intent(in) :: nion_in
21 integer, intent(out),dimension(:),pointer :: array_out
22 integer, intent(out) :: eflag_out
23 character(len=:), pointer, intent(out) :: emessage_out
24 !internal
25 character(len=:), allocatable :: emessage
26 !character(len=1000) :: emessage
27 !character(len=:), allocatable,target :: emessage_target
28 character(len=1000) ::emessage_fix
29 integer :: eflag
30 integer :: nmes,narr_out
31  integer,allocatable,dimension(:) ::local_array_out
32 
33 interface
34  subroutine check_bc (intarr_in,nion,intarr_out,error_flag,error_message)
35  integer, intent(in), dimension(:) :: intarr_in
36  integer, intent(in) :: nion
37  integer, intent(out), allocatable,dimension(:) ::intarr_out
38  integer, intent(out) :: error_flag
39  character(len=:), allocatable :: error_message
40  !character(len=1000) :: error_message
41  end subroutine check_bc
42 end interface
43 
44 eflag=0
45 
46 call check_bc(array_in,nion_in,local_array_out,eflag,emessage)
47 
48 
49 
50 if (eflag.lt.0) then
51  nmes=len_trim(emessage)
52  write(*,*) nmes,emessage
53  allocate(character(len=nmes) :: emessage_out)
54  emessage_out=emessage(1:nmes)
55  eflag_out=eflag
56  write(*,*) eflag_out,emessage_out
57  !deallocate(emessage)
58  !allocate(array_out(1))
59  !array_out(1)=-1
60 end if
61 if (allocated(local_array_out)) then
62  narr_out=size(local_array_out)
63  allocate(array_out(narr_out))
64  array_out(1:narr_out)=local_array_out(1:narr_out)
65  !deallocate (local_array_out)
66 else
67  allocate(array_out(1))
68  array_out(1)=-1
69  if (eflag_out.ge.0) then
70  eflag_out=-1
71  allocate(character(len=30) ::emessage_out)
72  emessage_out='no output array allocated'
73  end if
74 end if
75 
76 return
77 end subroutine interface_check_bc
78 
79 
80 subroutine check_bc (intarr_in,nion,intarr_out,error_flag,error_message)
81 
82 implicit none
83 
84 integer, intent(in), dimension(:) :: intarr_in
85 integer, intent(out), allocatable, dimension(:) :: intarr_out
86 integer, allocatable, dimension(:) :: intarr
87 integer, allocatable, dimension (:) :: ni_bt,ti_bt,vi_bt
88 
89 integer:: n_in,ti_shift,vi_shift,ni_shift,ne_shift,ne_bt,nbc_max
90 integer :: iion,ncount,ncount2,ncount3,ncount4
91 logical :: mask1,mask2,mask3,mask4
92 
93 integer, intent(in) :: nion
94 !this is set presently
95 integer, parameter :: nion_max=7
96 
97 !error handling
98 integer, intent(out) :: error_flag
99 character(len=:), intent(out), allocatable :: error_message
100 !character(len=1000) :: error_message
101 
102 !check 1
103 if (nion.lt.1) then
104  error_flag=-1
105  error_message='no ions found'
106  return
107 end if
108 
109 !this should be always, ne,te,ve
110 ne_shift=3
111 !this is set for nion_max ions
112 ti_shift=ne_shift+1
113 ni_shift=ne_shift+nion_max+1
114 vi_shift=ne_shift+2*nion_max+1
115 
116 !write(*,*) 'ti_shift,ni_shift,vi_shift',ti_shift,ni_shift,vi_shift
117 
118 !for 7 ions this should be 24
119 n_in=size(intarr_in)
120 
121 
122 allocate(intarr(n_in))
123 
124 !set otput
125 allocate(intarr_out(n_in))
126 intarr_out=intarr_in
127 
128 !set work array
129 intarr=intarr_in
130 
131 !set otput
132 intarr_out=intarr_in
133 
134 !write(*,*) 'intarr', intarr
135 !get ne bc type
136 ne_bt=intarr(ne_shift)
137 !write(*,*) 'ne_bt',ne_bt
138 
139 !allocate and get ni bc type array
140 allocate(ni_bt(nion_max))
141 ni_bt=intarr(ni_shift:ni_shift+nion_max-1)
142 !write(*,*) 'ni_bt',ni_bt
143 
144 !check if ne is reliable (check 2)
145 if (ne_bt.lt.0) then
146  error_flag=-1
147  error_message='boundary type for ne less then zero, error'
148  return
149 end if
150 !check if ne is interpretative (check 3)
151 !if not then
152 !check how many ni are predictive
153 !and if more than nion raise exception
154 if ((ne_bt.ge.1).and.(ne_bt.le.6)) then
155  ncount=0
156  do iion=1,nion_max
157  if((ni_bt(iion).ge.1).and.(ni_bt(iion).le.6)) ncount=ncount+1
158  enddo
159  !write(*,*) 'ncount',ncount
160  if (ncount.gt.nion-1) then
161  error_flag=-1
162  error_message='not possible to do predictive run, leave density of one of the ions or electrons free (OFF)'
163  return
164  end if
165 
166 end if
167 
168 !get max number of bc set for ions (among t,v,n)
169 allocate(ti_bt(nion_max),vi_bt(nion_max))
170 ti_bt=intarr(ti_shift:ti_shift+nion_max-1)
171 vi_bt=intarr(vi_shift:vi_shift+nion_max-1)
172 
173 !mask2=ni_bt.gt.0
174 !mask3=ti_bt.gt.0
175 !mask4=vi_bt.gt.0
176 ncount2=0
177 ncount3=0
178 ncount4=0
179 do iion=1,nion_max
180  if (ni_bt(iion).ge.0) ncount2=ncount2+1
181  if (ti_bt(iion).ge.0) ncount3=ncount3+1
182  if (vi_bt(iion).ge.0) ncount4=ncount4+1
183 end do
184 deallocate(intarr)
185 deallocate(ni_bt,ti_bt,vi_bt)
186 
187 !ncount2=all(ni_bt.gt.0)
188 !ncount3=all(ti_bt.gt.0)
189 !ncount4=all(ti_bt.gt.0)
190 
191 !write(*,*) 'ncount2,ncount3,ncount4', ncount2,ncount3,ncount4
192 
193 nbc_max=max(ncount2,ncount3,ncount4)
194 
195 !write(*,*) 'nbc_max',nbc_max
196 !check 4
197  if (nbc_max.lt.nion) then
198  error_flag=-1
199  error_message='error in composition, number of boundary conditions set is less than number of ions'
200  return
201  end if
202 
203 return
204 end subroutine check_bc
subroutine interface_check_bc(nion_in, array_in, array_out, eflag_out, emessage_out)
subroutine check_bc(intarr_in, nion, intarr_out, error_flag, error_message)