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.
46 lines
1.4 KiB
46 lines
1.4 KiB
subroutine runC_00i(k,l,i1,DetGr,f,Gtwiddle,Gtt,
|
|
. Shat2,Shat3,Shat3zz,S00i,N0)
|
|
implicit none
|
|
include 'lib/TensorReduction/Include/types.f'
|
|
include 'lib/TensorReduction/Include/TRconstants.f'
|
|
include 'lib/TensorReduction/Include/pvCnames.f'
|
|
include 'lib/TensorReduction/Include/pvCv.f'
|
|
include 'lib/TensorReduction/recur/Include/Carraydef.f'
|
|
include 'lib/TensorReduction/recur/Include/Carrays.f'
|
|
integer ep,N0,k,l,n,m,i1,np
|
|
parameter(np=2)
|
|
real(dp):: DetGr,Gtwiddle(np,np),Gtt(np,np,np,np),f(np)
|
|
complex(dp):: S00i(np,-2:0),Shat3zz(np,-2:0),
|
|
. Shat2(np,np,-2:0),Shat3(np,z2max,-2:0),pole,bit
|
|
|
|
do ep=-2,0
|
|
bit=czip
|
|
do n=1,np
|
|
do m=1,np
|
|
bit=bit
|
|
. +Gtt(k,n,l,m)*(f(n)*Shat2(m,i1,ep)
|
|
. +2d0*delta(n,i1)*Shat3zz(m,ep)-f(n)*f(m)*Cv(ci(i1)+N0,ep)
|
|
. -2d0*(f(n)*delta(m,i1)+f(m)*delta(n,i1))*Cv(cc00+N0,ep))
|
|
enddo
|
|
enddo
|
|
pole=0d0
|
|
if (ep.ge.-1) pole=-4d0*Gtwiddle(k,l)*Cv(czzi(i1)+N0,ep-1)
|
|
|
|
Cv(czzi(i1)+N0,ep)=
|
|
. -(pole
|
|
. +DetGr*Cv(ciii(z3(k,l,i1))+N0,ep)
|
|
. -Gtwiddle(k,l)*S00i(i1,ep)
|
|
. -Gtwiddle(1,l)*Shat3(1,z2(k,i1),ep)
|
|
. -Gtwiddle(2,l)*Shat3(2,z2(k,i1),ep)
|
|
. +Gtwiddle(k,l)*(Shat3(1,z2(1,i1),ep)
|
|
. +Shat3(2,z2(2,i1),ep))
|
|
. +bit)/(10d0*Gtwiddle(k,l))
|
|
|
|
enddo
|
|
|
|
return
|
|
end
|
|
|
|
|
|
|
|
|