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
902 B
26 lines
902 B
subroutine runC_i(j,i1,DetGr,Xtwiddle0,Gtwiddle,Shat2,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,j,i1,n,np
|
|
parameter(np=2)
|
|
real(dp):: DetGr,Xtwiddle0(np),Gtwiddle(np,np)
|
|
complex(dp):: Shat2(np,np,-2:0),Shat2s(np,np,-2:0),bit
|
|
|
|
do ep=-2,0
|
|
bit=czip
|
|
do n=1,np
|
|
Shat2s(n,i1,ep)=Shat2(n,i1,ep)-2d0*delta(n,i1)*Cv(N0+cc00,ep)
|
|
bit=bit+Gtwiddle(j,n)*Shat2s(n,i1,ep)
|
|
enddo
|
|
Cv(ci(i1)+N0,ep)=
|
|
. -(bit-DetGr*Cv(cii(z2(j,i1))+N0,ep))/Xtwiddle0(j)
|
|
|
|
enddo
|
|
|
|
return
|
|
end
|