1 subroutine avint ( ntab, xtab, ytab, a, b, result )
2 USE itm_types
, only : r8
109 write ( *,
'(a)' )
' '
110 write ( *,
'(a)' )
'AVINT - Fatal error!'
111 write ( *,
'(a,i8)' )
' NTAB is less than 3. NTAB = ', ntab
117 if ( xtab(i) <= xtab(i-1) )
then
118 write ( *,
'(a)' )
' '
119 write ( *,
'(a)' )
'AVINT - Fatal error!'
120 write ( *,
'(a)' )
' XTAB(I) is not greater than XTAB(I-1).'
121 write ( *,
'(a,i8)' )
' Here, I = ', i
122 write ( *,
'(a,g14.6)' )
' XTAB(I-1) = ', xtab(i-1)
123 write ( *,
'(a,g14.6)' )
' XTAB(I) = ', xtab(i)
131 if ( ntab == 2 )
then
132 slope = ( ytab(2) - ytab(1) ) / ( xtab(2) - xtab(1) )
133 fa = ytab(1) + slope * ( a - xtab(1) )
134 fb = ytab(2) + slope * ( b - xtab(2) )
135 result = 0.5_r8 * ( fa + fb ) * ( b - a )
139 if ( xtab(ntab-2) < a .or. b < xtab(3) )
then
140 write ( *,
'(a)' )
' '
141 write ( *,
'(a)' )
'AVINT - Fatal error!'
142 write ( *,
'(a)' )
' There were less than 3 function values'
143 write ( *,
'(a)' )
' between the limits of integration.'
150 if ( a <= xtab(i) )
then
164 if ( xtab(i) <= b )
then
174 if ( inrt - inlft < 2 )
then
175 write ( *,
'(a)' )
' '
176 write ( *,
'(a)' )
'AVINT - Fatal error!'
177 write ( *,
'(a)' )
' There were less than 3 function values'
178 write ( *,
'(a)' )
' between the limits of integration.'
182 if ( inlft == 1 )
then
188 if ( inrt == ntab )
then
210 term1 = ( ytab(i-1) ) / ( x12 * x13 )
211 term2 = - ( ytab(i) ) / ( x12 * x23 )
212 term3 = ( ytab(i+1) ) / ( x13 * x23 )
214 ba = term1 + term2 + term3
215 bb = - ( x2 + x3 ) * term1 - ( x1 + x3 ) * term2 - ( x1 + x2 ) * term3
216 bc = x2 * x3 * term1 + x1 * x3 * term2 + x1 * x2 * term3
218 if ( i == istart )
then
223 ca = 0.5_r8 * ( ba + ca )
224 cb = 0.5_r8 * ( bb + cb )
225 cc = 0.5_r8 * ( bc + cc )
232 total = total + ca * ( syu3 - syl3 ) / 3.0_r8 &
233 + cb * ( syu2 - syl2 ) / 2.0_r8 &
249 result = total + ca * ( syu3 - syl3 ) / 3.0_r8 &
250 + cb * ( syu2 - syl2 ) / 2.0_r8 &
subroutine avint(ntab, xtab, ytab, a, b, result)