forked from lgcrego/Dynemol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEHT_input.f
236 lines (184 loc) · 6.43 KB
/
EHT_input.f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
module Semi_Empirical_Parms
use type_m
use parameters_m , only : OPT_parms
use MPI_definitions_m , only : master
type(EHT) , public , protected :: atom(300)
type(EHT) , allocatable , save :: EH_atom(:)
public :: read_EHT_parameters , Include_OPT_parameters, EH_atom
private
interface Include_OPT_parameters
module procedure Basis_OPT_parameters
module procedure Atomic_OPT_parameters
end interface
contains
!
!
!
!==============================
subroutine read_EHT_parameters
!==============================
implicit none
! local variables ...
integer :: ioerr , i , AtNo , Ang , DOS_sum
character(len=1) :: spdf
OPEN(unit=3,file='my_eht_parameters.dat',status='old')
AtNo = 1
Ang = 0
DOS_sum = 0
do i = 1 , size(atom)
read(3,*,IOSTAT=ioerr) &
atom(AtNo)%symbol , &
atom(AtNo)%AtNo , &
atom(AtNo)%Nvalen , &
atom(AtNo)%Nzeta(Ang) , &
atom(AtNo)%Nquant(Ang) , &
spdf , &
atom(AtNo)%IP(Ang) , &
atom(AtNo)%zeta(Ang,1) , & ! <== zetas of my_eht_parameters.dat are given in units of a0^{-1} ...
atom(AtNo)%zeta(Ang,2) , & ! <== zetas of my_eht_parameters.dat are given in units of a0^{-1} ...
atom(AtNo)%coef(Ang,1) , &
atom(AtNo)%coef(Ang,2) , &
atom(AtNo)%DOS , &
atom(AtNo)%polar ! <== 10^{-24}*cm^3
if(ioerr < 0) EXIT
select case (spdf)
case('s')
DOS_sum = DOS_sum + 1
case('p')
DOS_sum = DOS_sum + 3
case('d')
DOS_sum = DOS_sum + 5
case('f')
DOS_sum = DOS_sum + 7
end select
if( DOS_sum == atom(AtNo)%DOS) then
atom(AtNo)%AngMax = Ang
Ang = 0
DOS_sum = 0
AtNo = AtNo + 1
else
Ang = Ang + 1
end if
end do
close(3)
! transform zetas to units of Angs^{-1} ...
forall( Ang=0:3 , i=1:2 ) atom(:)%zeta(Ang,i) = atom(:)%zeta(Ang,i) / a_Bohr
If( OPT_parms ) CALL read_OPT_parameters
end subroutine read_EHT_parameters
!
!
!
!==============================
subroutine read_OPT_parameters
!==============================
implicit none
! local variables ...
integer :: ioerr , nr , i
character(6) :: spdf
character(2) :: dumb
character(8) :: Symbol_char
character(11) :: residue_char
character(12) :: EHSymbol_char
logical :: flag1 , flag2 , flag3 , flag4
OPEN(unit=3,file='opt_eht_parms.input',status='old')
! read file heading ...
read(3,*,IOSTAT=ioerr) dumb
! number of lines of OPT_parameters ...
nr = 0
do
read(3,*,IOSTAT=ioerr) dumb
if(ioerr < 0) EXIT
nr = nr + 1
end do
allocate( EH_atom(nr) )
! rewind and read the OPT-EHT_parameters ...
rewind 3 ; read(3,*,IOSTAT=ioerr) dumb
do i = 1 , size(EH_atom)
read(3,17) Symbol_char , &
EHSymbol_char , &
residue_char , &
EH_atom(i)%AtNo , &
EH_atom(i)%Nvalen , &
EH_atom(i)%Nzeta(0) , &
EH_atom(i)%n , &
spdf , &
EH_atom(i)%IP(0) , &
EH_atom(i)%zeta(0,1) , & ! <== zetas of opt_eht_parms.input are given in units of a0^{-1} ...
EH_atom(i)%zeta(0,2) , & ! <== zetas of opt_eht_parms.input are given in units of a0^{-1} ...
EH_atom(i)%coef(0,1) , &
EH_atom(i)%coef(0,2) , &
EH_atom(i)%k_WH(0)
select case ( adjustl(spdf) )
case('s')
EH_atom(i)%l = 0
case('p')
EH_atom(i)%l = 1
case('d')
EH_atom(i)%l = 2
case('f')
EH_atom(i)%l = 3
end select
EH_atom(i) % Symbol = adjustl( Symbol_char )
EH_atom(i) % EHSymbol = adjustl( EHSymbol_char )
EH_atom(i) % residue = adjustl( residue_char )
EH_atom(i) % DOS = atom( EH_atom(i)%AtNo ) % DOS
EH_atom(i) % AngMax = atom( EH_atom(i)%AtNo ) % AngMax
! input-error checking ...
! "Happy families are all alike; every unhappy family is unhappy in its own way"
flag1 = ( (EH_atom(i)% zeta(0,2) == 0.0) .AND. (EH_atom(i)% Nzeta(0) == 2) )
flag2 = ( (EH_atom(i)% zeta(0,2) /= 0.0) .AND. (EH_atom(i)% Nzeta(0) == 1) )
flag3 = ( (EH_atom(i)% coef(0,2) == 0.0) .AND. (EH_atom(i)% Nzeta(0) == 2) )
flag4 = ( (EH_atom(i)% coef(0,2) /= 0.0) .AND. (EH_atom(i)% Nzeta(0) == 1) )
If( flag1 .OR. flag2 .OR. flag3 .OR. flag4 ) STOP ">>> error in opt_eht_parms.input ; check Nzeta parameter <<<"
end do
close(3)
If( master ) Print 44
If( master ) Print 45 , ( EH_atom(i)% EHSymbol , EH_atom(i)% residue , i = 1,size(EH_atom) )
! transform zetas to units of Angs^{-1} ...
forall( i=1:2 ) EH_atom(:)%zeta(0,i) = EH_atom(:)%zeta(0,i) / a_Bohr
include 'formats.h'
17 format(A8,t10,A12,t23,A11,t35,I7,t44,I10,t55,I9,t65,I5,t71,A6,t80,F9.6,t90,F9.6,t100,F9.6,t110,F9.6,t120,F9.6,t130,F9.6)
end subroutine read_OPT_parameters
!
!
!
!==========================================
subroutine Basis_OPT_parameters( basis )
!==========================================
implicit none
type(STO_basis) , intent(inout) :: basis(:)
! local variables ...
integer :: i
do i = 1 , size(EH_atom)
where( (adjustl(basis%EHSymbol) == EH_atom(i)%EHSymbol) &
.AND. (adjustl(basis%residue ) == EH_atom(i)%residue) &
.AND. (basis%l == EH_atom(i)%l) )
basis%IP = EH_atom(i)%IP (0)
basis%Nzeta = EH_atom(i)%Nzeta (0)
basis%coef(1) = EH_atom(i)%coef (0,1)
basis%coef(2) = EH_atom(i)%coef (0,2)
basis%zeta(1) = EH_atom(i)%zeta (0,1)
basis%zeta(2) = EH_atom(i)%zeta (0,2)
basis%k_WH = EH_atom(i)%k_WH (0)
end where
end do
end subroutine Basis_OPT_parameters
!
!
!
!==============================================
subroutine Atomic_OPT_parameters( system )
!==============================================
implicit none
type(structure) , intent(inout) :: system
! local variables ...
integer :: i
do i = 1 , size(EH_atom)
where( (adjustl(system%MMSymbol) == EH_atom(i)%EHSymbol) .AND. (adjustl(system%residue) == EH_atom(i)%residue))
system%Nvalen = EH_atom(i)%Nvalen
end where
end do
end subroutine Atomic_OPT_parameters
!
!
end module Semi_Empirical_Parms