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.
33 lines
925 B
33 lines
925 B
subroutine runCP_00i(i1,m0sq,Gr,Bzero1,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,i1,m,n,np
|
|
parameter(np=2)
|
|
real(dp):: m0sq,Gr(np,np)
|
|
complex(dp):: Bzero1(z1max,-2:0),bit,pole
|
|
|
|
do ep=-2,0
|
|
bit=czip
|
|
do n=1,np
|
|
do m=1,np
|
|
bit=bit+Gr(n,m)*Cv(ciii(z3(n,m,i1))+N0,ep)
|
|
enddo
|
|
enddo
|
|
|
|
pole=czip
|
|
if (ep .gt. -2) pole=4d0*Cv(czzi(i1)+N0,ep-1)
|
|
|
|
Cv(czzi(i1)+N0,ep)=
|
|
. (pole
|
|
. +2d0*Bzero1(i1,ep)
|
|
. +2d0*m0sq*Cv(ci(i1)+N0,ep)
|
|
. -bit)/12d0
|
|
enddo
|
|
|
|
return
|
|
end
|