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.
34 lines
964 B
34 lines
964 B
subroutine runP_0000(Gr,S0000,N0)
|
|
implicit none
|
|
include 'lib/TensorReduction/Include/types.f'
|
|
include 'lib/TensorReduction/Include/TRconstants.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,m,n,np
|
|
parameter(np=3)
|
|
real(dp):: Gr(np,np)
|
|
complex(dp):: S0000(-2:0),bit,pole
|
|
|
|
do ep=-2,0
|
|
bit=czip
|
|
do n=1,np
|
|
do m=1,np
|
|
bit=bit+Gr(n,m)*Dv(dzzii(z2(n,m))+N0,ep)
|
|
enddo
|
|
enddo
|
|
|
|
pole=czip
|
|
if (ep .gt. -2) pole=4d0*Dv(dd0000+N0,ep-1)
|
|
|
|
c--- note: we have simplified the recursion relation by using DD (5.9)
|
|
c--- so that S0000 = 2C00(0)+2*m0sq*D00
|
|
Dv(dd0000+N0,ep)=
|
|
. (pole
|
|
. +S0000(ep)
|
|
. -bit)/12d0
|
|
enddo
|
|
|
|
return
|
|
end
|