******************************************************************************** * * * 2DHF version 1-2003 * * Copyright (C) 1996 Jacek Kobus, Leif Laaksonen, Dage Sundholm * * * * This software may be used and distributed according to the terms * * of the GNU General Public License, see README and COPYING. * * * ******************************************************************************** c ### zasyx ### c c Evaluates asymptotic values of a given exchange potential from the c multipole expansion. c subroutine zasyx (idel,ipc,excp) implicit integer*4 (i-n) implicit real*8(a-h,o-z) include 'commons8.inc' dimension excp(*) do j=mxnmu-3,mxnmu itt=(j-1)*nni do i=1,nni kk=i+itt call multi(i,j,idel,ipc,pe) excp(kk)=r2*vxi(j)*pe enddo enddo return end