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.
 
 
 
 
 
 

10 lines
336 B

function del3(p1,p2,p3,k1,k2,k3)
implicit none
include 'lib/TensorReduction/Include/types.f'
real(dp):: del3,ovdot,p1(4),p2(4),p3(4),k1(4),k2(4),k3(4),del2
del3=ovdot(p1,k1)*del2(p2,p3,k2,k3)
& -ovdot(p1,k2)*del2(p2,p3,k1,k3)
& +ovdot(p1,k3)*del2(p2,p3,k1,k2)
return
end