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.
44 lines
1.3 KiB
44 lines
1.3 KiB
subroutine runF_00iii(i1,i2,i3,f,Gr,Shat5,N0)
|
|
C--- Expression for rearrangement of extension of Eq. 5.70
|
|
C--- Calculates D00iii
|
|
C--- Small terms of order f(i)*Dijkl,Gr(i,j)*Dijklm
|
|
implicit none
|
|
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'
|
|
include 'lib/TensorReduction/Include/pvweenumber.f'
|
|
integer ep,N0,k,i1,i2,i3,np
|
|
parameter(np=3)
|
|
real(dp):: f(np),Gr(np,np),den
|
|
complex(dp):: Shat5(np,z4max,-2:0)
|
|
|
|
do ep=-2,0
|
|
if ((i1 .eq. i2) .and. (i1 .eq. i3)) then
|
|
den=8d0
|
|
k=i1
|
|
elseif (i1 .eq. i2) then
|
|
den=6d0
|
|
k=i1
|
|
elseif (i1 .eq. i3) then
|
|
den=6d0
|
|
k=i1
|
|
elseif (i2 .eq. i3) then
|
|
den=6d0
|
|
k=i2
|
|
else
|
|
den=4d0
|
|
k=i1
|
|
endif
|
|
Dv(dzziii(z3(i1,i2,i3))+N0,ep)=
|
|
. (Shat5(k,z4(k,i1,i2,i3),ep)
|
|
. -f(k)*Dv(diiii(z4(k,i1,i2,i3))+N0,ep)
|
|
. -Gr(k,1)*Dv(diiiii(z5(1,k,i1,i2,i3))+N0,ep)
|
|
. -Gr(k,2)*Dv(diiiii(z5(2,k,i1,i2,i3))+N0,ep)
|
|
. -Gr(k,3)*Dv(diiiii(z5(3,k,i1,i2,i3))+N0,ep))/den
|
|
|
|
enddo
|
|
|
|
return
|
|
end
|