You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
subroutine runY_000000(k,l,Xtwiddle,Gtwiddle,Shat6zzzz,N0)
|
|
implicit none
|
|
C--- Expression for D0000 obtained from 5.50, following the comment after
|
|
C 5.50 on how to add adding additional "00" pairs
|
|
C--- Calculates D0000
|
|
C--- Small terms of order Xtwiddle(0,k)*D00i,Xtwiddle(0,0)*D00ii
|
|
C--- Denominator Gtwiddle(k,l)
|
|
include 'lib/TensorReduction/Include/types.f'
|
|
include 'lib/TensorReduction/Include/pvDnames.f'
|
|
include 'lib/TensorReduction/Include/pvDv.f'
|
|
include 'lib/TensorReduction/recur/Include/Darraydef.f'
|
|
include 'lib/TensorReduction/recur/Include/Darrays.f'
|
|
integer ep,N0,k,l,np
|
|
parameter(np=3)
|
|
real(dp):: Xtwiddle(0:np,0:np),Gtwiddle(np,np)
|
|
complex(dp):: Shat6zzzz(np,z1max,-2:0)
|
|
|
|
do ep=-2,0
|
|
Dv(dd000000+N0,ep) =
|
|
. -(-(Gtwiddle(k,1)*Shat6zzzz(1,l,ep)
|
|
. +Gtwiddle(k,2)*Shat6zzzz(2,l,ep)
|
|
. +Gtwiddle(k,3)*Shat6zzzz(3,l,ep)
|
|
. +Xtwiddle(k,0)*Dv(dzzzzi(l)+N0,ep)
|
|
. -Xtwiddle(0,0)*Dv(dzzzzii(z2(k,l))+N0,ep)
|
|
. ))/(2d0*Gtwiddle(k,l))
|
|
|
|
enddo
|
|
|
|
return
|
|
end
|
|
|