subroutine runF_00ii(i1,i2,f,Gr,Shat4,N0) C--- Expression for rearrangement of Eq. 5.70 C--- Calculates D00ii C--- Small terms of order f(i)*Dijk,Gr(i,j)*Dijkl implicit none include 'pvDnames.f' include 'pvDv.f' include 'Darraydef.f' include 'Darrays.f' include 'pvweenumber.f' integer ep,N0,i1,i2,np parameter(np=3) double precision f(np),Gr(np,np),den double complex Shat4(np,z3max,-2:0) do ep=-2,0 if (i1 .eq. i2) then den=6d0 else den=4d0 endif Dv(dzzii(z2(i1,i2))+N0,ep)= . (Shat4(i1,z3(i1,i1,i2),ep) . -f(i1)*Dv(diii(z3(i1,i1,i2))+N0,ep) . -Gr(i1,1)*Dv(diiii(z4(1,i1,i1,i2))+N0,ep) . -Gr(i1,2)*Dv(diiii(z4(2,i1,i1,i2))+N0,ep) . -Gr(i1,3)*Dv(diiii(z4(3,i1,i1,i2))+N0,ep))/den enddo return end