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.
 
 
 
 
 
 

28 lines
910 B

subroutine runF_00(i1,f,Gr,Shat2,N0)
C--- Expression for rearrangement of Eq. 5.66
C--- Calculates D00
C--- Small terms of order f(i)*Di,Gr(i,j)*Dij
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,i1,np
parameter(np=3)
real(dp):: f(np),Gr(np,np)
complex(dp):: Shat2(np,np,-2:0)
do ep=-2,0
Dv(dd00+N0,ep)=
. (Shat2(i1,i1,ep)
. -f(i1)*Dv(di(i1)+N0,ep)
. -Gr(i1,1)*Dv(dii(z2(1,i1))+N0,ep)
. -Gr(i1,2)*Dv(dii(z2(2,i1))+N0,ep)
. -Gr(i1,3)*Dv(dii(z2(3,i1))+N0,ep))/2d0
enddo
return
end