2 equidistant, sg, dsg, ddsg, in_psi)
15 integer(itm_i4),
intent(in) :: nrtmp, nv
16 real(r8),
dimension(nv),
intent(in) :: s_acc, sig, weights
17 real(r8),
intent(in) :: equidistant
18 logical,
intent(in) :: in_psi
20 real(r8),
dimension(nrtmp),
intent(out) :: sg, dsg, ddsg
22 integer(itm_i4),
parameter :: nmax = 1001
25 real(r8),
allocatable :: s1(:), fsum(:)
26 real(r8),
dimension(3) :: abltg
27 real(r8) :: alfa, beta
30 real(r8) :: weight, gauss_integral
31 integer(itm_i4) :: typ
32 integer(itm_i4) :: i, n_int
36 if (any(s_acc(1 : nv) < 0._r8) .or. any(s_acc(1 : nv) > 1._r8))
then
39 else if (any(sig(1 : nv) <= 0._r8))
then
42 else if (any(weights(1 : nv) < 0._r8) .or. any(weights(1 : nv) > 1))
then
49 weight = weight + weights(i)
51 if (weight <= 0._r8)
then
57 n_int = max(nint(1._r8 / minval(sig(1 : nv))), nmax)
63 dx = 1._r8 / dble(n_int - 1)
64 gauss_integral = 0._r8
67 gauss_integral = gauss_integral +
fgauss(dble(i - 0.5_r8) * dx, &
68 nv, equidistant, s_acc(1 : nv), weights(1 : nv), sig(1 : nv)) * dx
69 fsum(i + 1) = gauss_integral
73 s1(i) = dble(i - 1) / dble(n_int - 1)
74 fsum(i) = fsum(i) / fsum(n_int)
77 if (in_psi) fsum = fsum**2
82 call
spline(n_int, fsum, s1, alfa, beta, typ, f_spline)
85 fi = dble(i - 1) / dble(nrtmp - 1)
86 sg(i) =
spwert(n_int, fi, f_spline, fsum, abltg, 2)
95 2
format(//, 1x,
'ERROR:', /, 1x, &
96 'accumulation points s_acc must be >= 0 and <= 1', /, 1x, &
97 'stop in subroutine mesh_accumulation')
98 3
format(//, 1x,
'ERROR:', /, 1x, &
99 'Gaussian widths sig must be > 0', /, 1x, &
100 'stop in subroutine mesh_accumulation')
101 4
format(//, 1x,
'ERROR:', /, 1x, &
102 'weighting factors weights must be >= 0 and <= 1', /, 1x, &
103 'stop in subroutine mesh_accumulation')
104 5
format(//, 1x,
'ERROR:', /, 1x, &
105 'at least one weighting factor must be > 0', /, 1x, &
106 'stop in subroutine mesh_accumulation')
real(r8) function fgauss(x, nv, equidistant, s_acc, weights, sig)
subroutine allocate_spline_coefficients(spline, n)
subroutine spline(N, X, Y, ALFA, BETA, TYP, A, B, C, D)
REAL *8 function spwert(N, XWERT, A, B, C, D, X, ABLTG)
subroutine deallocate_spline_coefficients(spline)
subroutine mesh_accumulation(nrtmp, nv, s_acc, sig, weights, equidistant, sg, dsg, ddsg, in_psi)