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

subroutine runY_0000(k,l,Xtwiddle,Gtwiddle,Shat4zz,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):: Shat4zz(np,z1max,-2:0)
do ep=-2,0
Dv(dd0000+N0,ep) =
. -(-(Gtwiddle(k,1)*Shat4zz(1,l,ep)
. +Gtwiddle(k,2)*Shat4zz(2,l,ep)
. +Gtwiddle(k,3)*Shat4zz(3,l,ep)
. +Xtwiddle(k,0)*Dv(dzzi(l)+N0,ep)
. -Xtwiddle(0,0)*Dv(dzzii(z2(k,l))+N0,ep)
. ))/(2d0*Gtwiddle(k,l))
enddo
return
end