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
25 character(len=:),
allocatable :: emessage
28 character(len=1000) ::emessage_fix
30 integer :: nmes,narr_out
31 integer,
allocatable,
dimension(:) ::local_array_out
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
46 call
check_bc(array_in,nion_in,local_array_out,eflag,emessage)
51 nmes=len_trim(emessage)
52 write(*,*) nmes,emessage
53 allocate(
character(len=nmes) :: emessage_out)
54 emessage_out=emessage(1:nmes)
56 write(*,*) eflag_out,emessage_out
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)
67 allocate(array_out(1))
69 if (eflag_out.ge.0)
then
71 allocate(
character(len=30) ::emessage_out)
72 emessage_out=
'no output array allocated'
80 subroutine check_bc (intarr_in,nion,intarr_out,error_flag,error_message)
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
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
93 integer,
intent(in) :: nion
95 integer,
parameter :: nion_max=7
98 integer,
intent(out) :: error_flag
99 character(len=:),
intent(out),
allocatable :: error_message
105 error_message=
'no ions found'
113 ni_shift=ne_shift+nion_max+1
114 vi_shift=ne_shift+2*nion_max+1
122 allocate(intarr(n_in))
125 allocate(intarr_out(n_in))
136 ne_bt=intarr(ne_shift)
140 allocate(ni_bt(nion_max))
141 ni_bt=intarr(ni_shift:ni_shift+nion_max-1)
147 error_message=
'boundary type for ne less then zero, error'
154 if ((ne_bt.ge.1).and.(ne_bt.le.6))
then
157 if((ni_bt(iion).ge.1).and.(ni_bt(iion).le.6)) ncount=ncount+1
160 if (ncount.gt.nion-1)
then
162 error_message=
'not possible to do predictive run, leave density of one of the ions or electrons free (OFF)'
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)
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
185 deallocate(ni_bt,ti_bt,vi_bt)
193 nbc_max=max(ncount2,ncount3,ncount4)
197 if (nbc_max.lt.nion)
then
199 error_message=
'error in composition, number of boundary conditions set is less than number of ions'
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)