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.
 
 
 
 
 
 

26 lines
1.0 KiB

subroutine runCP_iiiii(k,i1,i2,i3,i4,i5,f,Gr,Shat6,N0)
implicit none
include 'lib/TensorReduction/Include/types.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,i1,i2,i3,i4,i5,np
parameter(np=2)
real(dp):: f(np),Gr(np,np)
complex(dp):: Shat6(np,z5max,-2:0)
do ep=-2,0
Cv(ciiiii(z5(i1,i2,i3,i4,i5))+N0,ep)=
. (Shat6(k,z5(i1,i2,i3,i4,i5),ep)
. -2d0*delta(k,i1)*Cv(czziiii(z4(i2,i3,i4,i5))+N0,ep)
. -2d0*delta(k,i2)*Cv(czziiii(z4(i1,i3,i4,i5))+N0,ep)
. -2d0*delta(k,i3)*Cv(czziiii(z4(i1,i2,i4,i5))+N0,ep)
. -2d0*delta(k,i4)*Cv(czziiii(z4(i1,i2,i3,i5))+N0,ep)
. -2d0*delta(k,i5)*Cv(czziiii(z4(i1,i2,i3,i4))+N0,ep)
. -Gr(k,1)*Cv(ciiiiii(z6(1,i1,i2,i3,i4,i5))+N0,ep)
. -Gr(k,2)*Cv(ciiiiii(z6(2,i1,i2,i3,i4,i5))+N0,ep))/f(k)
enddo
return
end